17 lines
363 B
PHP
17 lines
363 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace MintyPHP\Repository\Audit;
|
||
|
|
|
||
|
|
interface ApiAuditLogRepositoryInterface
|
||
|
|
{
|
||
|
|
public function create(array $data): int|false;
|
||
|
|
|
||
|
|
public function listPaged(array $filters): array;
|
||
|
|
|
||
|
|
public function listFilterOptions(int $limit = 200): array;
|
||
|
|
|
||
|
|
public function find(int $id): ?array;
|
||
|
|
|
||
|
|
public function purgeOlderThanDays(int $days): int;
|
||
|
|
}
|