diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2023-11-14 11:13:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-14 11:13:48 +0100 |
commit | f313b12d54a831f3788bb44d7f51bb8f1ac54583 (patch) | |
tree | 0c60238f98375e5a45a59bf532eed48032246e55 /lib/public | |
parent | 5f6964000629bd04c39913a471dc8aca334c3b53 (diff) | |
parent | 174b76fff35f52ed62fe1dc073c17e2d881c8bb0 (diff) | |
download | nextcloud-server-f313b12d54a831f3788bb44d7f51bb8f1ac54583.tar.gz nextcloud-server-f313b12d54a831f3788bb44d7f51bb8f1ac54583.zip |
Merge pull request #41436 from nextcloud/feat/introduce-inAppSearch-method-for-advanced-search
Add `inAppSearch` for advanced search providers
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/Search/IInAppSearch.php | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/lib/public/Search/IInAppSearch.php b/lib/public/Search/IInAppSearch.php new file mode 100644 index 00000000000..9e1e294bf4d --- /dev/null +++ b/lib/public/Search/IInAppSearch.php @@ -0,0 +1,34 @@ +<?php + +declare(strict_types=1); + +/** + * @copyright 2023 Benjamin Gaussorgues <benjamin.gaussorgues@nextcloud.com> + * + * @author Benjamin Gaussorgues <benjamin.gaussorgues@nextcloud.com> + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + */ +namespace OCP\Search; + +/** + * Interface for search providers supporting in-app search + * + * @since 28.0.0 + */ +interface IInAppSearch extends IProvider { +} |