aboutsummaryrefslogtreecommitdiffstats
path: root/core/Command/Maintenance
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2023-01-16 14:13:57 +0100
committerChristoph Wurst <christoph@winzerhof-wurst.at>2023-01-19 13:10:02 +0100
commit2e66acfab800d85a7afa58a637af92606658bfe4 (patch)
tree29d2633be1c20a70dbedfb469950d3b5ddcc2490 /core/Command/Maintenance
parent6be58756f41835d9c880222978b405766d3134ec (diff)
downloadnextcloud-server-2e66acfab800d85a7afa58a637af92606658bfe4.tar.gz
nextcloud-server-2e66acfab800d85a7afa58a637af92606658bfe4.zip
fix(PHP8.2): Fix deprecated string interpolation syntax
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'core/Command/Maintenance')
-rw-r--r--core/Command/Maintenance/RepairShareOwnership.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Command/Maintenance/RepairShareOwnership.php b/core/Command/Maintenance/RepairShareOwnership.php
index 267e0ca1d48..c4d8da7bf74 100644
--- a/core/Command/Maintenance/RepairShareOwnership.php
+++ b/core/Command/Maintenance/RepairShareOwnership.php
@@ -77,7 +77,7 @@ class RepairShareOwnership extends Command {
$output->writeln("Found " . count($shares) . " shares with invalid share owner");
foreach ($shares as $share) {
/** @var array{shareId: int, fileTarget: string, initiator: string, receiver: string, owner: string, mountOwner: string} $share */
- $output->writeln(" - share ${share['shareId']} from \"${share['initiator']}\" to \"${share['receiver']}\" at \"${share['fileTarget']}\", owned by \"${share['owner']}\", that should be owned by \"${share['mountOwner']}\"");
+ $output->writeln(" - share {$share['shareId']} from \"{$share['initiator']}\" to \"{$share['receiver']}\" at \"{$share['fileTarget']}\", owned by \"{$share['owner']}\", that should be owned by \"{$share['mountOwner']}\"");
}
$output->writeln("");