diff --git a/src/TenancyServiceProvider.php b/src/TenancyServiceProvider.php index 0dfc7509..25efa52b 100644 --- a/src/TenancyServiceProvider.php +++ b/src/TenancyServiceProvider.php @@ -4,17 +4,17 @@ declare(strict_types=1); namespace Stancl\Tenancy; -use Illuminate\Mail\MailManager; -use Stancl\Tenancy\Enums\LogMode; use Illuminate\Cache\CacheManager; -use Stancl\Tenancy\Contracts\Domain; -use Stancl\Tenancy\Contracts\Tenant; +use Illuminate\Database\Console\Migrations\FreshCommand; +use Illuminate\Mail\MailManager; use Illuminate\Support\Facades\Event; use Illuminate\Support\ServiceProvider; +use Stancl\Tenancy\Bootstrappers\FilesystemTenancyBootstrapper; +use Stancl\Tenancy\Contracts\Domain; +use Stancl\Tenancy\Contracts\Tenant; +use Stancl\Tenancy\Enums\LogMode; use Stancl\Tenancy\Events\Contracts\TenancyEvent; use Stancl\Tenancy\Resolvers\DomainTenantResolver; -use Illuminate\Database\Console\Migrations\FreshCommand; -use Stancl\Tenancy\Bootstrappers\FilesystemTenancyBootstrapper; class TenancyServiceProvider extends ServiceProvider {