15 lines
305 B
PHP
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;
|
|
}
|