forked from fa/breadcrumb-the-shire
13 lines
294 B
PHP
13 lines
294 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace MintyPHP\Repository\Tenant;
|
||
|
|
|
||
|
|
interface TenantMicrosoftAuthRepositoryInterface
|
||
|
|
{
|
||
|
|
public function findByTenantId(int $tenantId): ?array;
|
||
|
|
|
||
|
|
public function listByTenantIds(array $tenantIds): array;
|
||
|
|
|
||
|
|
public function upsertByTenantId(int $tenantId, array $data): bool;
|
||
|
|
}
|