Make WordPress Core


Ignore:
Timestamp:
08/26/2021 12:57:08 PM (4 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/tests/phpunit/tests/rest-api/rest-block-renderer-controller.php

    r51568 r51657  
    436436        wp_set_current_user( self::$user_id );
    437437
    438         $pre_render_filter = function( $output, $block ) {
     438        $pre_render_filter = static function( $output, $block ) {
    439439            if ( $block['blockName'] === self::$block_name ) {
    440440                return '<p>Alternate content.</p>';
Note: See TracChangeset for help on using the changeset viewer.