initial work on seach changes

This commit is contained in:
Chris
2019-01-16 14:47:32 +00:00
parent fb2428e21b
commit f935fd94c6
5 changed files with 88 additions and 21 deletions

10
app/SearchInterface.php Normal file
View File

@@ -0,0 +1,10 @@
<?php namespace App;
use GuzzleHttp\Exception\GuzzleException;
use GuzzleHttp\Client;
interface SearchInterface
{
public function getResults();
}