forked from fa/breadcrumb-the-shire
13 lines
281 B
PHP
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;
|
|
}
|