Files
trafficpumper/app/Serp/Contracts/AsyncSerpProvider.php
T

15 lines
325 B
PHP
Raw Normal View History

2026-08-29 15:53:53 +03:00
<?php
namespace App\Serp\Contracts;
use App\Serp\Data\SerpQuery;
use App\Serp\Data\SerpSubmission;
use App\Serp\Data\SerpTaskResult;
interface AsyncSerpProvider extends SerpProvider
{
public function submit(SerpQuery $query): SerpSubmission;
public function collect(string $taskId, int $limit): SerpTaskResult;
}