aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/Files/Cache/Cache.php
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2024-07-04 19:20:46 +0200
committerRobin Appelman <robin@icewind.nl>2024-07-12 17:01:39 +0200
commitc82d382a2020e598a58135841305da9395e7001e (patch)
treec6c052c5d88fe254dd30c729d924bbbbea9057fa /lib/private/Files/Cache/Cache.php
parent86f5fb0c9b9f0d4fd9721d05f04d6dedb5315c29 (diff)
downloadnextcloud-server-c82d382a2020e598a58135841305da9395e7001e.tar.gz
nextcloud-server-c82d382a2020e598a58135841305da9395e7001e.zip
feat: add base class for extending the query builder
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib/private/Files/Cache/Cache.php')
-rw-r--r--lib/private/Files/Cache/Cache.php4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/private/Files/Cache/Cache.php b/lib/private/Files/Cache/Cache.php
index 3c871fdf4dc..c132ac1f034 100644
--- a/lib/private/Files/Cache/Cache.php
+++ b/lib/private/Files/Cache/Cache.php
@@ -87,9 +87,7 @@ class Cache implements ICache {
protected function getQueryBuilder() {
return new CacheQueryBuilder(
- $this->connection,
- $this->systemConfig,
- $this->logger,
+ $this->connection->getQueryBuilder(),
$this->metadataManager,
);
}