diff options
author | Joas Schilling <coding@schilljs.com> | 2020-08-05 09:49:18 +0200 |
---|---|---|
committer | npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com> | 2020-08-05 12:52:16 +0000 |
commit | ea8f68bea6957ae459ff1ba6849b25354b3f0093 (patch) | |
tree | b6523d1ad1c01e55622fd31bfcfb27daabec0593 /lib/public/Search/ISearchQuery.php | |
parent | d98f7c1bd83fc03fd297ebeac6279ffe17316950 (diff) | |
download | nextcloud-server-ea8f68bea6957ae459ff1ba6849b25354b3f0093.tar.gz nextcloud-server-ea8f68bea6957ae459ff1ba6849b25354b3f0093.zip |
Hand in the route and the parameters of the request
Signed-off-by: Joas Schilling <coding@schilljs.com>
Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
Diffstat (limited to 'lib/public/Search/ISearchQuery.php')
-rw-r--r-- | lib/public/Search/ISearchQuery.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/public/Search/ISearchQuery.php b/lib/public/Search/ISearchQuery.php index 00d538050d4..f89251dd134 100644 --- a/lib/public/Search/ISearchQuery.php +++ b/lib/public/Search/ISearchQuery.php @@ -76,4 +76,16 @@ interface ISearchQuery { * @since 20.0.0 */ public function getCursor(); + + /** + * @return string + * @since 20.0.0 + */ + public function getRoute(): string; + + /** + * @return array + * @since 20.0.0 + */ + public function getRouteParameters(): array; } |