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
Instead of having in _processAnnotation :
if ($token == T_CLASS) { $this->_classSuppressWarnings[] = $suppressedCheck; } elseif ($token == T_INTERFACE) { $this->_interfaceSuppressWarnings[] = $suppressedCheck; } elseif ($token == T_FUNCTION) { $this->_functionSuppressWarnings[] = $suppressedCheck; } elseif ($token == T_FILE) { $this->_fileSuppressWarnings[] = $suppressedCheck; }
Store the annotation in the current stack item.
Then when analysing, check for all annontations in the stack (including parents).
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Instead of having in _processAnnotation :
Store the annotation in the current stack item.
Then when analysing, check for all annontations in the stack (including parents).
The text was updated successfully, but these errors were encountered: