mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-12 17:44:04 +00:00
Fix classes in the Jobs namespace (#38)
This commit is contained in:
parent
edea513edf
commit
c0a83e70f1
2 changed files with 2 additions and 2 deletions
|
|
@ -37,6 +37,6 @@ class QueuedTenantDatabaseCreator implements ShouldQueue
|
||||||
*/
|
*/
|
||||||
public function handle()
|
public function handle()
|
||||||
{
|
{
|
||||||
$this->databaseManager->createDatabase($databaseName);
|
$this->databaseManager->createDatabase($this->databaseName);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -37,6 +37,6 @@ class QueuedTenantDatabaseDeleter implements ShouldQueue
|
||||||
*/
|
*/
|
||||||
public function handle()
|
public function handle()
|
||||||
{
|
{
|
||||||
$this->databaseManager->deleteDatabase($databaseName);
|
$this->databaseManager->deleteDatabase($this->databaseName);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue