The section _Selecting part of a JSON document_ contains the snippet: ```php // Selecting all 'a' properties (indefinite query, values exist): $query1 = $queryFactory->createQuery('$..a'); $result1 = $processor->select($query1, $document); var_dump($result1->select()); // array: ['{"a":1,"b":2}', '1'] ``` I believe this should be `$result1->decode()`. A `SelectResult` has no method `select`. https://github.com/remorhaz/php-json-path?tab=readme-ov-file#selecting-part-of-a-json-document
The section Selecting part of a JSON document contains the snippet:
I believe this should be
$result1->decode(). ASelectResulthas no methodselect.https://github.com/remorhaz/php-json-path?tab=readme-ov-file#selecting-part-of-a-json-document