1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-04 19:24:02 +00:00

Apply fixes from StyleCI

This commit is contained in:
stancl 2019-08-21 18:18:08 +00:00 committed by StyleCI Bot
parent 495bb7d541
commit fc7bdc694a
3 changed files with 3 additions and 3 deletions

View file

@ -12,4 +12,4 @@ interface UniqueIdentifierGenerator
* @return string
*/
public static function handle(string $domain, array $data = []): string;
}
}

View file

@ -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

View file

@ -10,4 +10,4 @@ class UUIDGenerator implements UniqueIdentifierGenerator
{
return (string) \Webpatser\Uuid\Uuid::generate(1, $domain);
}
}
}