Make WordPress Core


Ignore:
Timestamp:
09/10/2023 09:02:49 AM (16 months ago)
Author:
SergeyBiryukov
Message:

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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-customize-setting.php

    r54133 r56551  
    837837        }
    838838
    839         if ( $this->theme_supports && ! current_theme_supports( ... (array) $this->theme_supports ) ) {
     839        if ( $this->theme_supports && ! current_theme_supports( ...(array) $this->theme_supports ) ) {
    840840            return false;
    841841        }
Note: See TracChangeset for help on using the changeset viewer.