- 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>
18 lines
499 B
PHP
18 lines
499 B
PHP
<?php
|
|
|
|
namespace MintyPHP\Repository\Access;
|
|
|
|
/** Contract for querying user-role relationships and role usage counts. */
|
|
interface UserRoleRepositoryInterface
|
|
{
|
|
public function listRoleIdsByUserId(int $userId): array;
|
|
|
|
public function replaceForUser(int $userId, array $roleIds): bool;
|
|
|
|
public function listUserIdsByRoleIds(array $roleIds): array;
|
|
|
|
public function countUsersByRoleIds(array $roleIds): array;
|
|
|
|
public function countActiveUsersByRoleIds(array $roleIds): array;
|
|
}
|