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
Discovered in #305, an assignment of one element of an array does not get recorded as a write to that variable.
$foo = &$bar; $foo['key'] = 1; // This counts as a "read" of $foo when it should be a "write".
I think in most cases this ends up not being an issue since clearly all the tests are passing but it could be the source of subtle bugs.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Discovered in #305, an assignment of one element of an array does not get recorded as a write to that variable.
I think in most cases this ends up not being an issue since clearly all the tests are passing but it could be the source of subtle bugs.
The text was updated successfully, but these errors were encountered: