Proje dosyaları eklendi
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user