We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc3c236 commit a7bf247Copy full SHA for a7bf247
1 file changed
src/Helpers.php
@@ -57,15 +57,13 @@ public static function propMapToSelectMap(array $map): array
57
*/
58
private static function setNestedValue(array &$array, array $path, mixed $value): void
59
{
60
- /** @psalm-suppress UnusedVariable */
61
$arr = &$array;
62
63
foreach ($path as $key) {
64
/** @psalm-suppress MixedArrayAccess */
65
$arr = &$arr[$key];
66
}
67
68
- /** @psalm-suppress MixedAssignment, UnusedVariable */
69
$arr = $value;
70
71
0 commit comments