Files
newznab-tmux/app/Services/StatusProbes/Contracts/ServiceProbeInterface.php
T
2026-04-13 12:37:32 +02:00

15 lines
246 B
PHP

<?php
declare(strict_types=1);
namespace App\Services\StatusProbes\Contracts;
use App\Services\StatusProbes\ProbeResult;
interface ServiceProbeInterface
{
public function identifier(): string;
public function probe(): ProbeResult;
}