TenantAtlas/apps/platform/app/Services/Providers/Contracts/ProviderScriptExecutor.php
2026-04-08 09:33:16 +02:00

15 lines
305 B
PHP

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