From fc7bdc694aa5db4f43b0194d3edef5376d3dad23 Mon Sep 17 00:00:00 2001 From: stancl Date: Wed, 21 Aug 2019 18:18:08 +0000 Subject: [PATCH] Apply fixes from StyleCI --- src/Interfaces/UniqueIdentifierGenerator.php | 2 +- src/TenantManager.php | 2 +- src/UUIDGenerator.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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 +}