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
Silence those 3 warnings listed below when used within add_action() and add_filter() context.
add_action()
add_filter()
When you have a code like this:
add_action( 'admin_init', static function() { ( new Admin() )->init(); } );
you receive these warnings for the 1st line:
PEAR.Functions.FunctionCallSignature.ContentAfterOpenBracket
PEAR.Functions.FunctionCallSignature.MultipleArguments
and this one for the last line:
PEAR.Functions.FunctionCallSignature.CloseBracketLine
Otherwise, this thing needs to be done which looks kinda ugly and excessive:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Expected Behavior
Silence those 3 warnings listed below when used within
add_action()
andadd_filter()
context.Current Behavior
When you have a code like this:
you receive these warnings for the 1st line:
PEAR.Functions.FunctionCallSignature.ContentAfterOpenBracket
PEAR.Functions.FunctionCallSignature.MultipleArguments
and this one for the last line:
PEAR.Functions.FunctionCallSignature.CloseBracketLine
Otherwise, this thing needs to be done which looks kinda ugly and excessive:
Screenshots
The text was updated successfully, but these errors were encountered: