11 lines
195 B
PHP
11 lines
195 B
PHP
<?php
|
|
|
|
namespace App\Services\Providers\Contracts;
|
|
|
|
use App\Models\ProviderConnection;
|
|
|
|
interface ProviderHealthCheck
|
|
{
|
|
public function check(ProviderConnection $connection): HealthResult;
|
|
}
|