We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12239a3 commit 22db41eCopy full SHA for 22db41e
src/Symfony/Component/JsonPath/JsonCrawler.php
@@ -1101,7 +1101,7 @@ private function isArrayOrObject(mixed $value): bool
1101
private function normalizeStorage(\stdClass|array $data): array
1102
{
1103
return array_map(function ($value) {
1104
- return $value instanceof \stdClass || $value && \is_array($value) ? self::normalizeStorage($value) : $value;
+ return $value instanceof \stdClass || $value && \is_array($value) ? $this->normalizeStorage($value) : $value;
1105
}, (array) $data);
1106
}
1107
0 commit comments