forked from fa/breadcrumb-the-shire
11 lines
259 B
PHP
11 lines
259 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace MintyPHP\Repository\Scheduler;
|
||
|
|
|
||
|
|
interface SchedulerRuntimeRepositoryInterface
|
||
|
|
{
|
||
|
|
public function touchHeartbeat(string $result, ?string $errorCode = null, ?string $heartbeatAtUtc = null): bool;
|
||
|
|
|
||
|
|
public function findStatus(): ?array;
|
||
|
|
}
|