You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update the package today and now get the mentioned deprecated exception (using php 8.2.27):
Deprecated: Using ${var} in strings is deprecated, use {$var} instead in /var/www/drupal/vendor/galbar/jsonpath/src/Galbar/JsonPath/JsonPath.php on line 77
If I got that correct that was never a variable variable but is intended to be a "short" for '$' . $recursivePath.
The deprecation warning makes me concerned this might now be evaluated as variable variable.
We might want to change this to $recursivePath = '$' . $recursivePath; to avoid any potential for collision - given I'm right about my interpretation of the code.