-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New issue
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
fix: wrong number of $accepted_args
on add_filter()
calls
#66694
base: trunk
Are you sure you want to change the base?
fix: wrong number of $accepted_args
on add_filter()
calls
#66694
Conversation
Warning: Type of PR label mismatch To merge this PR, it requires exactly 1 label indicating the type of PR. Other labels are optional and not being checked here.
Read more about Type labels in Gutenberg. Don't worry if you don't have the required permissions to add labels; the PR reviewer should be able to help with the task. |
The following accounts have interacted with this PR and/or linked issues. I will continue to update these lists as activity occurs. You can also manually ask me to refresh this list by adding the If you're merging code through a pull request on GitHub, copy and paste the following into the bottom of the merge commit message.
To understand the WordPress project's expectations around crediting contributors, please review the Contributor Attribution page in the Core Handbook. |
👋 Thanks for your first Pull Request and for helping build the future of Gutenberg and WordPress, @justlevine! In case you missed it, we'd love to have you join us in our Slack community. If you want to learn more about WordPress development in general, check out the Core Handbook full of helpful information. |
Yes, level 0 problems must be fixed. I consider applications with level 4 problems broken. |
I think we can just omit |
Perhaps, but figured I'd match the existing patterns e.g.
|
The |
@@ -273,7 +273,7 @@ function gutenberg_enqueue_block_style_variation_styles() { | |||
} | |||
|
|||
// Add Gutenberg filters and action. | |||
add_filter( 'render_block_data', 'gutenberg_render_block_style_variation_support_styles', 10, 2 ); | |||
add_filter( 'render_block_data', 'gutenberg_render_block_style_variation_support_styles', 10, 1 ); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here and in other places 1
can be omitted as it's the default value. The same applies to the priority which also defaults to 10
.
What?
This PR fixes several instances of the wrong number of
$accepted_args
being passed toadd_filter()
, so the match the correct number of args taken by their callbacks.As the correct
$accepted_args
and$priority
are the defaults once corrected, the explicit args have been removed entirely.Why?
While this issue was surfaced by PHPStan (via #66693) it can be remediated independently as part of #66598
How?
Testing Instructions
Testing Instructions for Keyboard
Screenshots or screencast