14 lines
249 B
PHP
14 lines
249 B
PHP
<?php
|
|
|
|
namespace App\Services\Providers\Contracts;
|
|
|
|
use App\Models\ProviderConnection;
|
|
|
|
interface ProviderComplianceCollector
|
|
{
|
|
/**
|
|
* @return array<string, int>
|
|
*/
|
|
public function snapshot(ProviderConnection $connection): array;
|
|
}
|