From 5d5417cf11e46af4c2e1f00bb627e3b3acc02257 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Tue, 23 Apr 2019 18:03:40 +0200 Subject: [PATCH] Fix Jobs' docblocks (fix #39) --- src/Jobs/QueuedTenantDatabaseCreator.php | 3 +-- src/Jobs/QueuedTenantDatabaseDeleter.php | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/Jobs/QueuedTenantDatabaseCreator.php b/src/Jobs/QueuedTenantDatabaseCreator.php index a18ddb85..f23f6442 100644 --- a/src/Jobs/QueuedTenantDatabaseCreator.php +++ b/src/Jobs/QueuedTenantDatabaseCreator.php @@ -19,9 +19,8 @@ class QueuedTenantDatabaseCreator implements ShouldQueue /** * Create a new job instance. * - * @param DatabaseCreator $databaseCreator + * @param TenantDatabaseManager $databaseManager * @param string $databaseName - * @param string $action * @return void */ public function __construct(TenantDatabaseManager $databaseManager, string $databaseName) diff --git a/src/Jobs/QueuedTenantDatabaseDeleter.php b/src/Jobs/QueuedTenantDatabaseDeleter.php index 5cb5d35a..ba3e5bc7 100644 --- a/src/Jobs/QueuedTenantDatabaseDeleter.php +++ b/src/Jobs/QueuedTenantDatabaseDeleter.php @@ -19,9 +19,8 @@ class QueuedTenantDatabaseDeleter implements ShouldQueue /** * Create a new job instance. * - * @param DatabaseCreator $databaseCreator + * @param TenantDatabaseManager $databaseManager * @param string $databaseName - * @param string $action * @return void */ public function __construct(TenantDatabaseManager $databaseManager, string $databaseName)