Make WordPress Core


Ignore:
Timestamp:
09/10/2023 09:02:49 AM (12 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-panel.php

    r55276 r56551  
    243243        }
    244244
    245         if ( $this->theme_supports && ! current_theme_supports( ... (array) $this->theme_supports ) ) {
     245        if ( $this->theme_supports && ! current_theme_supports( ...(array) $this->theme_supports ) ) {
    246246            return false;
    247247        }
Note: See TracChangeset for help on using the changeset viewer.