Heimdall/app/SearchInterface.php

10 lines
176 B
PHP
Raw Normal View History

2019-01-16 14:47:32 +00:00
<?php namespace App;
use GuzzleHttp\Exception\GuzzleException;
use GuzzleHttp\Client;
interface SearchInterface
{
2019-01-18 18:21:44 +00:00
public function getResults($query, $providerdetails);
2019-01-16 14:47:32 +00:00
}