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>
24 lines
739 B
PHP
24 lines
739 B
PHP
<?php
|
|
|
|
namespace MintyPHP\Repository\Audit;
|
|
|
|
/** Contract for tracking user deactivation/deletion lifecycle events and restore eligibility. */
|
|
interface UserLifecycleAuditRepositoryInterface
|
|
{
|
|
public function create(array $row): int|false;
|
|
|
|
public function updateStatus(int $id, string $status, ?string $reasonCode = null): bool;
|
|
|
|
public function listPaged(array $filters): array;
|
|
|
|
public function listFilterOptions(int $limit = 200): array;
|
|
|
|
public function find(int $id): ?array;
|
|
|
|
public function findDeleteEventForRestore(int $id, bool $forUpdate = false): ?array;
|
|
|
|
public function markRestored(int $id, int $restoredBy, int $restoredUserId): bool;
|
|
|
|
public function purgeOlderThanDays(int $days): int;
|
|
}
|