- 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
577 B
PHP
27 lines
577 B
PHP
<?php
|
|
|
|
namespace MintyPHP\Repository\Content;
|
|
|
|
use MintyPHP\DB;
|
|
|
|
/** Looks up CMS page metadata by slug. */
|
|
class PageRepository
|
|
{
|
|
private static function unwrap(?array $row): ?array
|
|
{
|
|
if (!$row) {
|
|
return null;
|
|
}
|
|
return $row['pages'] ?? $row;
|
|
}
|
|
|
|
public static function findBySlug(string $slug): ?array
|
|
{
|
|
$row = DB::selectOne(
|
|
'select id, uuid, slug, created_by, modified_by, created, modified from pages where slug = ? limit 1',
|
|
$slug
|
|
);
|
|
return self::unwrap($row);
|
|
}
|
|
}
|