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
+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;
}