Coding Standards: Correct spacing for spread operators.
No space allowed between the operator and the variable it applies to. Note: This is enforced by WPCS 3.0.0. Follow-up to [46133]. Props jrf. See #59161, #58831. Built from https://develop.svn.wordpress.org/trunk@56551 git-svn-id: http://core.svn.wordpress.org/trunk@56063 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
c170fd62f4
commit
d399e57a1f
|
@ -242,7 +242,7 @@ class WP_Customize_Panel {
|
|||
return false;
|
||||
}
|
||||
|
||||
if ( $this->theme_supports && ! current_theme_supports( ... (array) $this->theme_supports ) ) {
|
||||
if ( $this->theme_supports && ! current_theme_supports( ...(array) $this->theme_supports ) ) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
@ -264,7 +264,7 @@ class WP_Customize_Section {
|
|||
return false;
|
||||
}
|
||||
|
||||
if ( $this->theme_supports && ! current_theme_supports( ... (array) $this->theme_supports ) ) {
|
||||
if ( $this->theme_supports && ! current_theme_supports( ...(array) $this->theme_supports ) ) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
@ -836,7 +836,7 @@ class WP_Customize_Setting {
|
|||
return false;
|
||||
}
|
||||
|
||||
if ( $this->theme_supports && ! current_theme_supports( ... (array) $this->theme_supports ) ) {
|
||||
if ( $this->theme_supports && ! current_theme_supports( ...(array) $this->theme_supports ) ) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.4-alpha-56550';
|
||||
$wp_version = '6.4-alpha-56551';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue