1
0
Files
breadcrumb-the-shire/lib/Repository/Scheduler/SchedulerRuntimeRepositoryInterface.php

11 lines
259 B
PHP
Raw Normal View History

2026-03-05 08:26:51 +01:00
<?php
namespace MintyPHP\Repository\Scheduler;
interface SchedulerRuntimeRepositoryInterface
{
public function touchHeartbeat(string $result, ?string $errorCode = null, ?string $heartbeatAtUtc = null): bool;
public function findStatus(): ?array;
}