diff --git a/src/Tenancy.php b/src/Tenancy.php index 6cf8b801..92c2af0f 100644 --- a/src/Tenancy.php +++ b/src/Tenancy.php @@ -5,16 +5,16 @@ declare(strict_types=1); namespace Stancl\Tenancy; use Closure; -use Stancl\Tenancy\Contracts\Tenant; -use Symfony\Component\Finder\Finder; -use Illuminate\Support\Facades\Schema; -use Illuminate\Database\Eloquent\Model; -use Illuminate\Support\Traits\Macroable; use Illuminate\Database\Eloquent\Builder; +use Illuminate\Database\Eloquent\Model; use Illuminate\Support\Collection; +use Illuminate\Support\Facades\Schema; +use Illuminate\Support\Traits\Macroable; use Stancl\Tenancy\Contracts\TenancyBootstrapper; +use Stancl\Tenancy\Contracts\Tenant; use Stancl\Tenancy\Database\Concerns\BelongsToPrimaryModel; use Stancl\Tenancy\Exceptions\TenantCouldNotBeIdentifiedByIdException; +use Symfony\Component\Finder\Finder; use Symfony\Component\Finder\SplFileInfo; class Tenancy