diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-01-14 14:47:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-14 14:47:23 +0100 |
commit | a2678d56aac487597fe095011d57d54c0b154ac8 (patch) | |
tree | f1e6e0d6dda7c651f1cb3921664aa7eccbf4c33f /lib/public | |
parent | cbce239c8c69eb82a3e9220df09ee025655f5f0b (diff) | |
parent | 21a720e026368c5d1c1c55e89cd5630428a6eeb5 (diff) | |
download | nextcloud-server-a2678d56aac487597fe095011d57d54c0b154ac8.tar.gz nextcloud-server-a2678d56aac487597fe095011d57d54c0b154ac8.zip |
Merge pull request #7842 from nextcloud/dep_isearch
Removed deprecated search function from ISearch
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/ISearch.php | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/public/ISearch.php b/lib/public/ISearch.php index 93dc3b9c1f2..001c847a9e3 100644 --- a/lib/public/ISearch.php +++ b/lib/public/ISearch.php @@ -37,16 +37,6 @@ 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 - * @param string[] $inApps optionally limit results to the given apps * @param int $page pages start at page 1 * @param int $size * @return array An array of OCP\Search\Result's |