Heimdall/app/SearchInterface.php

9 lines
111 B
PHP
Raw Normal View History

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