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
Introduced here : #388
Example of inconsistencies :
<?php $foo += &$bar; $foo = 1 + &$bar;
The =& is not an operator, maybe it's a conding style, but in reality & is attached to the variable and not the operation
=&
&
variable
operation
/cc @evilebottnawi
The text was updated successfully, but these errors were encountered:
ok, i've got a mind refresh from #205 - let's close it even if I have a problem with that approach
Sorry, something went wrong.
No branches or pull requests
Introduced here :
#388
Example of inconsistencies :
The
=&
is not an operator, maybe it's a conding style, but in reality&
is attached to thevariable
and not theoperation
/cc @evilebottnawi
The text was updated successfully, but these errors were encountered: