mirror of
https://github.com/nextcloud/server.git
synced 2026-02-19 02:38:40 -05:00
Removed deprecated search function from ISearch
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
parent
1faef0c459
commit
21a720e026
2 changed files with 0 additions and 21 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue