forked from fa/breadcrumb-the-shire
- Add single-line class docblocks to all 59 repository classes and interfaces describing scope and responsibility - Add multi-line docblocks to key services documenting business rules: AuthService (6-step login cascade), ImportService (3-phase CSV workflow), TenantScopeService (strict/permissive modes), PermissionService (RBAC resolution + two-tier caching), UserAccountService (atomicity + audit) - Add transaction(callable) wrapper to DatabaseSessionRepository to DRY up begin/commit/rollback boilerplate Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
16 lines
451 B
PHP
16 lines
451 B
PHP
<?php
|
|
|
|
namespace MintyPHP\Repository\Tenant;
|
|
|
|
/** Contract for querying user-tenant membership and per-tenant user counts. */
|
|
interface UserTenantRepositoryInterface
|
|
{
|
|
public function listTenantIdsByUserId(int $userId): array;
|
|
|
|
public function replaceForUser(int $userId, array $tenantIds): bool;
|
|
|
|
public function countUsersByTenantIds(array $tenantIds): array;
|
|
|
|
public function countActiveUsersByTenantIds(array $tenantIds): array;
|
|
}
|