- 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>
20 lines
556 B
PHP
20 lines
556 B
PHP
<?php
|
|
|
|
namespace MintyPHP\Repository\Auth;
|
|
|
|
/** Contract for email verification code lifecycle: creation, lookup, attempt tracking, and completion. */
|
|
interface EmailVerificationRepositoryInterface
|
|
{
|
|
public function create(int $userId, string $codeHash, string $expiresAt): ?int;
|
|
|
|
public function invalidateForUser(int $userId): bool;
|
|
|
|
public function findActiveByUserId(int $userId): ?array;
|
|
|
|
public function findById(int $id): ?array;
|
|
|
|
public function incrementAttempts(int $id): bool;
|
|
|
|
public function markUsed(int $id): bool;
|
|
}
|