diff options
author | provokateurin <kate@provokateurin.de> | 2024-09-13 18:13:44 +0200 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2024-09-13 20:12:49 +0000 |
commit | f1817dc82b5745c264a541c53ae2c2df3c68dc1d (patch) | |
tree | c54289e3bef7e95096a855db1acaaa09e3b12648 /lib/private/Files/Cache/Cache.php | |
parent | 6cdb280e9e657bd14009e0eedc1bd48c589d1a89 (diff) | |
download | nextcloud-server-backport/47954/stable29.tar.gz nextcloud-server-backport/47954/stable29.zip |
fix(files): Adjust Cache::searchQuery() parameter name to match interfacebackport/47954/stable29
Signed-off-by: provokateurin <kate@provokateurin.de>
Diffstat (limited to 'lib/private/Files/Cache/Cache.php')
-rw-r--r-- | lib/private/Files/Cache/Cache.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Files/Cache/Cache.php b/lib/private/Files/Cache/Cache.php index de55cc24812..7f52935489d 100644 --- a/lib/private/Files/Cache/Cache.php +++ b/lib/private/Files/Cache/Cache.php @@ -882,8 +882,8 @@ class Cache implements ICache { return $this->searchQuery(new SearchQuery($operator, 0, 0, [], null)); } - public function searchQuery(ISearchQuery $searchQuery) { - return current($this->querySearchHelper->searchInCaches($searchQuery, [$this])); + public function searchQuery(ISearchQuery $query) { + return current($this->querySearchHelper->searchInCaches($query, [$this])); } /** |