delete php string deprication (#8911)

This commit is contained in:
Viktor Scharf
2024-04-22 11:20:00 +02:00
committed by GitHub
parent 1f0b853a8d
commit 13ee2d93aa

View File

@@ -2690,7 +2690,7 @@ trait Sharing {
$expectedElementsArray['path'],
(string) $elementResponded->path[0],
__METHOD__
. " Expected '${expectedElementsArray['path']}' but got '"
. " Expected '{$expectedElementsArray['path']}' but got '"
. $elementResponded->path[0]
. "'"
);
@@ -2698,7 +2698,7 @@ trait Sharing {
$expectedElementsArray['permissions'],
(string) $elementResponded->permissions[0],
__METHOD__
. " Expected '${expectedElementsArray['permissions']}' but got '"
. " Expected '{$expectedElementsArray['permissions']}' but got '"
. $elementResponded->permissions[0]
. "'"
);