summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/lib
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2018-10-19 16:44:28 +0200
committerJoas Schilling <coding@schilljs.com>2018-11-08 15:44:45 +0100
commitbb352fb667e87ea0829f1da5f9e85c34bdefe9fa (patch)
treecd243856dcfec5708528418b55269e3d7feed53a /apps/files_sharing/lib
parent78fd8ab0fd362fd5d568dfc5b47a02158e62d51c (diff)
downloadnextcloud-server-bb352fb667e87ea0829f1da5f9e85c34bdefe9fa.tar.gz
nextcloud-server-bb352fb667e87ea0829f1da5f9e85c34bdefe9fa.zip
Use the defined func()->count() instead of manual counting
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/files_sharing/lib')
-rw-r--r--apps/files_sharing/lib/Command/CleanupRemoteStorages.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/lib/Command/CleanupRemoteStorages.php b/apps/files_sharing/lib/Command/CleanupRemoteStorages.php
index 2175982dfc1..a4e5f50b9b2 100644
--- a/apps/files_sharing/lib/Command/CleanupRemoteStorages.php
+++ b/apps/files_sharing/lib/Command/CleanupRemoteStorages.php
@@ -98,7 +98,7 @@ class CleanupRemoteStorages extends Command {
public function countFiles($numericId, OutputInterface $output) {
$queryBuilder = $this->connection->getQueryBuilder();
- $queryBuilder->select($queryBuilder->createFunction('COUNT(' . $queryBuilder->getColumnName('fileid') . ')'))
+ $queryBuilder->select($queryBuilder->func()->count('fileid'))
->from('filecache')
->where($queryBuilder->expr()->eq(
'storage',