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>
22 lines
694 B
PHP
22 lines
694 B
PHP
<?php
|
|
|
|
namespace MintyPHP\Repository\User;
|
|
|
|
/** Contract for read-only user lookups by ID, UUID, email, and authorization snapshots. */
|
|
interface UserReadRepositoryInterface
|
|
{
|
|
public function findAuthzSnapshot(int $userId): ?array;
|
|
|
|
public function find(int $id): ?array;
|
|
|
|
public function findByUuid(string $uuid): ?array;
|
|
|
|
public function findByEmail(string $email): ?array;
|
|
|
|
public function listPrivilegedUserIdsByPermissionKeys(array $permissionKeys): array;
|
|
|
|
public function listIdsForAutoDeactivate(int $days, array $excludedUserIds, int $limit = 500): array;
|
|
|
|
public function listIdsForAutoDelete(int $days, array $excludedUserIds, int $limit = 500): array;
|
|
}
|