1
0
Files
breadcrumb-the-shire/lib/Repository/Scheduler/ScheduledJobRunRepositoryInterface.php
2026-03-05 08:26:51 +01:00

13 lines
281 B
PHP

<?php
namespace MintyPHP\Repository\Scheduler;
interface ScheduledJobRunRepositoryInterface
{
public function create(array $data): int|false;
public function listPagedByJobId(int $jobId, array $filters): array;
public function purgeOlderThanDays(int $days): int;
}