aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/lib/Command/DeleteOrphanedFiles.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files/lib/Command/DeleteOrphanedFiles.php')
-rw-r--r--apps/files/lib/Command/DeleteOrphanedFiles.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/lib/Command/DeleteOrphanedFiles.php b/apps/files/lib/Command/DeleteOrphanedFiles.php
index b7101c07258..50031da4f63 100644
--- a/apps/files/lib/Command/DeleteOrphanedFiles.php
+++ b/apps/files/lib/Command/DeleteOrphanedFiles.php
@@ -53,7 +53,7 @@ class DeleteOrphanedFiles extends Command {
$result = $query->execute();
while ($row = $result->fetch()) {
$deletedInLastChunk++;
- $deletedEntries += $deleteQuery->setParameter('objectid', (int) $row['fileid'])
+ $deletedEntries += $deleteQuery->setParameter('objectid', (int)$row['fileid'])
->execute();
}
$result->closeCursor();
@@ -120,7 +120,7 @@ class DeleteOrphanedFiles extends Command {
$result = $query->execute();
while ($row = $result->fetch()) {
$deletedInLastChunk++;
- $deletedEntries += $deleteQuery->setParameter('storageid', (int) $row['storage_id'])
+ $deletedEntries += $deleteQuery->setParameter('storageid', (int)$row['storage_id'])
->execute();
}
$result->closeCursor();