Make WordPress Core


Ignore:
Timestamp:
09/09/2023 09:26:01 AM (17 months ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Use pre-increment/decrement for stand-alone statements.

Note: This is enforced by WPCS 3.0.0:

  1. There should be no space between an increment/decrement operator and the variable it applies to.
  2. Pre-increment/decrement should be favoured over post-increment/decrement for stand-alone statements. “Pre” will in/decrement and then return, “post” will return and then in/decrement. Using the “pre” version is slightly more performant and can prevent future bugs when code gets moved around.

References:

Props jrf.
See #59161, #58831.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/rest-api/rest-posts-controller.php

    r56548 r56549  
    16631663        // 3rd page.
    16641664        self::factory()->post->create();
    1665         $total_posts++;
    1666         $total_pages++;
     1665        ++$total_posts;
     1666        ++$total_pages;
    16671667        $request = new WP_REST_Request( 'GET', '/wp/v2/posts' );
    16681668        $request->set_param( 'page', 3 );
     
    22802280        $filter_count   = 0;
    22812281        $filter_content = static function() use ( &$filter_count ) {
    2282             $filter_count++;
     2282            ++$filter_count;
    22832283            return '<p>Filtered content.</p>';
    22842284        };
     
    23162316        $filter_count   = 0;
    23172317        $filter_content = static function() use ( &$filter_count ) {
    2318             $filter_count++;
     2318            ++$filter_count;
    23192319            return '<p>Filtered content.</p>';
    23202320        };
Note: See TracChangeset for help on using the changeset viewer.