We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
At least on PHP v8.1 I was getting the following error:
Trying to access array offset on value of type null in /inc/vendor/digitalnature/php-ref/ref.php on line 472
I was able to fix this locally by adjusting line 472 from
if(in_array($parts[1][0], array('&', '$'), true)){
to
if(is_array($parts[1]) && in_array($parts[1][0], array('&', '$'), true)){
Please confirm if this fix works & if this can be adjusted in your repo.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
At least on PHP v8.1 I was getting the following error:
I was able to fix this locally by adjusting line 472 from
if(in_array($parts[1][0], array('&', '$'), true)){
to
if(is_array($parts[1]) && in_array($parts[1][0], array('&', '$'), true)){
Please confirm if this fix works & if this can be adjusted in your repo.
The text was updated successfully, but these errors were encountered: