1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-13 06:54:03 +00:00

Apply fixes from StyleCI

This commit is contained in:
stancl 2019-09-05 17:27:32 +00:00 committed by StyleCI Bot
parent 98cb49b1c0
commit 362aaf4764
5 changed files with 16 additions and 7 deletions

View file

@ -1,10 +1,12 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\TenancyBoostrappers;
use Stancl\Tenancy\DatabaseManager;
use Illuminate\Foundation\Application;
use Stancl\Tenancy\Contracts\TenancyBootstrapper;
use Stancl\Tenancy\DatabaseManager;
class DatabaseTenancyBootstrapper implements TenancyBootstrapper
{
@ -29,4 +31,4 @@ class DatabaseTenancyBootstrapper implements TenancyBootstrapper
{
$this->database->reconnect();
}
}
}