10 lines
152 B
PHP
10 lines
152 B
PHP
|
<?php namespace App;
|
||
|
|
||
|
use GuzzleHttp\Exception\GuzzleException;
|
||
|
use GuzzleHttp\Client;
|
||
|
|
||
|
interface SearchInterface
|
||
|
{
|
||
|
public function getResults();
|
||
|
|
||
|
}
|