mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 01:30:50 -04:00
fix(PHP8.2): Fix deprecated string interpolation syntax
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
parent
6be58756f4
commit
2e66acfab8
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Reference in a new issue