TenantAtlas/app/Services/Providers/Contracts/ProviderDirectoryCollector.php

14 lines
249 B
PHP

<?php
namespace App\Services\Providers\Contracts;
use App\Models\ProviderConnection;
interface ProviderDirectoryCollector
{
/**
* @return array<string, mixed>
*/
public function collect(ProviderConnection $connection): array;
}