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>
27 lines
667 B
PHP
27 lines
667 B
PHP
<?php
|
|
|
|
namespace MintyPHP\Repository\Security;
|
|
|
|
/** Contract for sliding-window rate limit storage by scope and subject hash. */
|
|
interface RateLimitRepositoryInterface
|
|
{
|
|
public function findByScopeAndHash(string $scope, string $subjectHash): ?array;
|
|
|
|
public function create(
|
|
string $scope,
|
|
string $subjectHash,
|
|
int $hits,
|
|
string $windowStartedAt,
|
|
?string $blockedUntil
|
|
): bool;
|
|
|
|
public function updateStateById(
|
|
int $id,
|
|
int $hits,
|
|
string $windowStartedAt,
|
|
?string $blockedUntil
|
|
): bool;
|
|
|
|
public function deleteByScopeAndHash(string $scope, string $subjectHash): bool;
|
|
}
|