diff options
author | blizzz <blizzz@arthur-schiwon.de> | 2022-06-15 21:39:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-15 21:39:56 +0200 |
commit | 33148016a52b6f0006deb70e520492230f0f1880 (patch) | |
tree | 4c9bde3818865310ab2fc495135d51c17ea445a1 /apps | |
parent | 3763024ff9c11c307e09803f10c910a9e9b03a7a (diff) | |
parent | c54fb5f9e616e0a0a5a475a1378cb340d7083780 (diff) | |
download | nextcloud-server-33148016a52b6f0006deb70e520492230f0f1880.tar.gz nextcloud-server-33148016a52b6f0006deb70e520492230f0f1880.zip |
Merge pull request #32876 from nextcloud/fix/fix-string-interpolation
Use {$var} instead of ${var} for PHP 8.2 compatibility
Diffstat (limited to 'apps')
-rw-r--r-- | apps/dav/lib/DAV/Sharing/Backend.php | 2 | ||||
-rw-r--r-- | apps/files/lib/Command/RepairTree.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/dav/lib/DAV/Sharing/Backend.php b/apps/dav/lib/DAV/Sharing/Backend.php index 0f675ea4c15..544a38cfbe6 100644 --- a/apps/dav/lib/DAV/Sharing/Backend.php +++ b/apps/dav/lib/DAV/Sharing/Backend.php @@ -201,7 +201,7 @@ class Backend { while ($row = $result->fetch()) { $p = $this->principalBackend->getPrincipalByPath($row['principaluri']); $shares[] = [ - 'href' => "principal:${row['principaluri']}", + 'href' => "principal:{$row['principaluri']}", 'commonName' => isset($p['{DAV:}displayname']) ? $p['{DAV:}displayname'] : '', 'status' => 1, 'readOnly' => (int) $row['access'] === self::ACCESS_READ, 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']); |