Removed deprecated search function from ISearch

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
Roeland Jago Douma 2018-01-13 19:27:25 +01:00
parent 1faef0c459
commit 21a720e026
No known key found for this signature in database
GPG Key ID: F941078878347C0C
2 changed files with 0 additions and 21 deletions

View File

@ -37,17 +37,6 @@ class Search implements ISearch {
private $providers = array();
private $registeredProviders = array();
/**
* Search all providers for $query
* @param string $query
* @param string[] $inApps optionally limit results to the given apps
* @return array An array of OC\Search\Result's
*/
public function search($query, array $inApps = array()) {
// old apps might assume they get all results, so we set size 0
return $this->searchPaged($query, $inApps, 1, 0);
}
/**
* Search all providers for $query
* @param string $query

View File

@ -33,16 +33,6 @@ namespace OCP;
*/
interface ISearch {
/**
* Search all providers for $query
* @param string $query
* @param string[] $inApps optionally limit results to the given apps
* @return array An array of OCP\Search\Result's
* @deprecated 8.0.0 use searchPaged() with page and size
* @since 7.0.0 - parameter $inApps was added in 8.0.0
*/
public function search($query, array $inApps = array());
/**
* Search all providers for $query
* @param string $query