aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/dav/lib/Files/LazySearchBackend.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/dav/lib/Files/LazySearchBackend.php b/apps/dav/lib/Files/LazySearchBackend.php
index dc7fec607a4..0d576b97814 100644
--- a/apps/dav/lib/Files/LazySearchBackend.php
+++ b/apps/dav/lib/Files/LazySearchBackend.php
@@ -24,7 +24,7 @@
namespace OCA\DAV\Files;
use SearchDAV\Backend\ISearchBackend;
-use SearchDAV\Query\Query;
+use SearchDAV\XML\BasicSearch;
class LazySearchBackend implements ISearchBackend {
/**
@@ -60,7 +60,7 @@ class LazySearchBackend implements ISearchBackend {
}
}
- public function search(Query $query) {
+ public function search(BasicSearch $query) {
if ($this->backend) {
return $this->backend->search($query);
} else {