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

14 lines
247 B
PHP

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