Skip to content

Commit 22db41e

Browse files
keradusnicolas-grekas
authored andcommitted
src/Symfony/Component/JsonPath - fix
1 parent 12239a3 commit 22db41e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/JsonPath/JsonCrawler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1101,7 +1101,7 @@ private function isArrayOrObject(mixed $value): bool
11011101
private function normalizeStorage(\stdClass|array $data): array
11021102
{
11031103
return array_map(function ($value) {
1104-
return $value instanceof \stdClass || $value && \is_array($value) ? self::normalizeStorage($value) : $value;
1104+
return $value instanceof \stdClass || $value && \is_array($value) ? $this->normalizeStorage($value) : $value;
11051105
}, (array) $data);
11061106
}
11071107

0 commit comments

Comments
 (0)