1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-04 23:54:03 +00:00

Fix classes in the Jobs namespace

This commit is contained in:
Samuel Štancl 2019-04-23 17:21:14 +02:00
parent b20f62ecfa
commit 26026a5b50
2 changed files with 2 additions and 2 deletions

View file

@ -37,6 +37,6 @@ class QueuedTenantDatabaseCreator implements ShouldQueue
*/
public function handle()
{
$this->databaseManager->createDatabase($databaseName);
$this->databaseManager->createDatabase($this->databaseName);
}
}

View file

@ -37,6 +37,6 @@ class QueuedTenantDatabaseDeleter implements ShouldQueue
*/
public function handle()
{
$this->databaseManager->deleteDatabase($databaseName);
$this->databaseManager->deleteDatabase($this->databaseName);
}
}