summaryrefslogtreecommitdiffstats
path: root/apps/files/lib
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2022-06-14 15:12:28 +0200
committerCôme Chilliet <come.chilliet@nextcloud.com>2022-06-14 15:12:28 +0200
commitc54fb5f9e616e0a0a5a475a1378cb340d7083780 (patch)
tree053603c579c7108583af509e9154f185d63329fa /apps/files/lib
parentad10cd5f65fc145889bade0a57a910502cd02750 (diff)
downloadnextcloud-server-c54fb5f9e616e0a0a5a475a1378cb340d7083780.tar.gz
nextcloud-server-c54fb5f9e616e0a0a5a475a1378cb340d7083780.zip
Use {$var} instead of ${var} for PHP 8.2 compatibility
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'apps/files/lib')
-rw-r--r--apps/files/lib/Command/RepairTree.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/lib/Command/RepairTree.php b/apps/files/lib/Command/RepairTree.php
index 96f114735d6..4fe64ef0edf 100644
--- a/apps/files/lib/Command/RepairTree.php
+++ b/apps/files/lib/Command/RepairTree.php
@@ -68,7 +68,7 @@ class RepairTree extends Command {
->where($query->expr()->eq('fileid', $query->createParameter('fileid')));
foreach ($rows as $row) {
- $output->writeln("Path of file ${row['fileid']} is ${row['path']} but should be ${row['parent_path']}/${row['name']} based on it's parent", OutputInterface::VERBOSITY_VERBOSE);
+ $output->writeln("Path of file {$row['fileid']} is {$row['path']} but should be {$row['parent_path']}/{$row['name']} based on it's parent", OutputInterface::VERBOSITY_VERBOSE);
if ($fix) {
$fileId = $this->getFileId((int)$row['parent_storage'], $row['parent_path'] . '/' . $row['name']);