fix(PHP8.2): Fix deprecated string interpolation syntax

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
pull/36162/head
Christoph Wurst 1 year ago
parent 6be58756f4
commit 2e66acfab8
No known key found for this signature in database
GPG Key ID: CC42AC2A7F0E56D8

@ -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("");

Loading…
Cancel
Save