Proje dosyaları eklendi

This commit is contained in:
2026-08-29 15:53:53 +03:00
commit d3313400ca
440 changed files with 24827 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
<?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;
}
+15
View File
@@ -0,0 +1,15 @@
<?php
namespace App\Serp\Contracts;
use App\Serp\Data\SerpQuery;
use App\Serp\Data\SerpResponse;
interface SerpProvider
{
public function key(): string;
public function supports(SerpQuery $query): bool;
public function search(SerpQuery $query): SerpResponse;
}