Sfoglia il codice sorgente

Merge pull request #36162 from nextcloud/fix/php82/string-var-interpolation

fix(PHP8.2): Fix deprecated string interpolation syntax
tags/v26.0.0beta1
Christoph Wurst 1 anno fa
parent
commit
d42d8b79e0
Nessun account collegato all'indirizzo email del committer
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1
    1
      core/Command/Maintenance/RepairShareOwnership.php

+ 1
- 1
core/Command/Maintenance/RepairShareOwnership.php Vedi File

@@ -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…
Annulla
Salva