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
skipcq
We use the skipcq keyword to suppress a specific occurrence of an issue in the source code. We can implement the same for issues detected by Globstar.
<?php function test_dangerous_eval() { $user_input = $_GET['input']; // skipcq: php:dangerous_eval eval($user_input);
This will suppress the php:dangerous_eval checker from raising an issue on this line.
php:dangerous_eval
The text was updated successfully, but these errors were encountered:
MashyBasker
No branches or pull requests
We use the
skipcq
keyword to suppress a specific occurrence of an issue in the source code. We can implement the same for issues detected by Globstar.Sample usage
This will suppress the
php:dangerous_eval
checker from raising an issue on this line.The text was updated successfully, but these errors were encountered: