diff --git a/src/Interfaces/UniqueIdentifierGenerator.php b/src/Interfaces/UniqueIdentifierGenerator.php index fcdef519..becf19d2 100644 --- a/src/Interfaces/UniqueIdentifierGenerator.php +++ b/src/Interfaces/UniqueIdentifierGenerator.php @@ -12,4 +12,4 @@ interface UniqueIdentifierGenerator * @return string */ public static function handle(string $domain, array $data = []): string; -} \ No newline at end of file +} diff --git a/src/TenantManager.php b/src/TenantManager.php index 280bf531..b8909e08 100644 --- a/src/TenantManager.php +++ b/src/TenantManager.php @@ -5,8 +5,8 @@ namespace Stancl\Tenancy; use Stancl\Tenancy\Interfaces\StorageDriver; use Stancl\Tenancy\Traits\BootstrapsTenancy; use Illuminate\Contracts\Foundation\Application; -use Stancl\Tenancy\Exceptions\CannotChangeUuidOrDomainException; use Stancl\Tenancy\Interfaces\UniqueIdentifierGenerator; +use Stancl\Tenancy\Exceptions\CannotChangeUuidOrDomainException; use Stancl\Tenancy\Exceptions\TenantCouldNotBeIdentifiedException; final class TenantManager diff --git a/src/UUIDGenerator.php b/src/UUIDGenerator.php index 9f8a8db6..547d0ac5 100644 --- a/src/UUIDGenerator.php +++ b/src/UUIDGenerator.php @@ -10,4 +10,4 @@ class UUIDGenerator implements UniqueIdentifierGenerator { return (string) \Webpatser\Uuid\Uuid::generate(1, $domain); } -} \ No newline at end of file +}