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
The following code gets flagged by the WordPress-VIP ruleset because it thinks that Link is link(), which is disallowed.
Link
link()
use Fieldmanager_Link as Link;
Resulting sniff error:
Filesystem writes are forbidden, you should not be using link() (WordPress.VIP.FileSystemWritesDisallow.file_ops_link)
The sniffs should ignore the definition of aliased classes and namespaces.
Related: #764
The text was updated successfully, but these errors were encountered:
Related #719.
Same utility function as mentioned in #719 (comment) should solve this too eventually.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
The following code gets flagged by the WordPress-VIP ruleset because it thinks that
Link
islink()
, which is disallowed.Resulting sniff error:
The sniffs should ignore the definition of aliased classes and namespaces.
Related: #764
The text was updated successfully, but these errors were encountered: