Make WordPress Core


Ignore:
Timestamp:
08/26/2021 12:57:08 PM (3 years ago)
Author:
hellofromTonya
Message:

Coding Standards: Use static closures when not using $this.

When a closure does not use $this, it can be made static for improved performance.

Static closures are supported in PHP since PHP 5.4. ​

Props jrf, hellofromTonya, swissspidy, SergeyBiryukov.
See #53359.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/block-supports/duotone.php

    r50929 r51657  
    362362    $selectors        = explode( ',', $duotone_support );
    363363    $selectors_scoped = array_map(
    364         function ( $selector ) use ( $duotone_id ) {
     364        static function ( $selector ) use ( $duotone_id ) {
    365365            return '.' . $duotone_id . ' ' . trim( $selector );
    366366        },
Note: See TracChangeset for help on using the changeset viewer.