1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 18:54:03 +00:00

Fix #1 (code quality)

This commit is contained in:
Samuel Štancl 2019-01-20 21:02:32 +01:00
parent 19de80582d
commit 1fe599966b
2 changed files with 3 additions and 3 deletions

View file

@ -6,7 +6,7 @@ interface StorageDriver
{
public function identifyTenant(string $domain): array;
public function getAllTenants(array $uuids = []): array;
public function getTenantById(string $uuid, $fields = []): array;
public function getTenantById(string $uuid, array $fields = []): array;
public function getTenantIdByDomain(string $domain): ?string;
public function createTenant(string $domain, string $uuid): array;
public function deleteTenant(string $uuid): bool;