Make WordPress Core


Ignore:
Timestamp:
09/09/2023 09:26:01 AM (3 years 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/comment/metaCache.php

    r55749 r56549  
    244244                $num_queries = get_num_queries();
    245245                $this->assertSame( 'bar', get_comment_meta( $comments[0], 'foo', 'bar' ) );
    246                 $num_queries++;
     246                ++$num_queries;
    247247                $this->assertSame( $num_queries, get_num_queries() );
    248248
     
    253253                // A comment from outside the results will not be primed.
    254254                $this->assertSame( 'bar', get_comment_meta( $comments[4], 'foo', 'bar' ) );
    255                 $num_queries++;
     255                ++$num_queries;
    256256                $this->assertSame( $num_queries, get_num_queries() );
    257257        }
     
    294294                $num_queries = get_num_queries();
    295295                $this->assertSame( 'bar', get_comment_meta( $comments[0], 'foo', 'bar' ) );
    296                 $num_queries++;
     296                ++$num_queries;
    297297                $this->assertSame( $num_queries, get_num_queries() );
    298298
     
    303303                // A comment from outside the results will not be primed.
    304304                $this->assertSame( 'bar', get_comment_meta( $comments[4], 'foo', 'bar' ) );
    305                 $num_queries++;
     305                ++$num_queries;
    306306                $this->assertSame( $num_queries, get_num_queries() );
    307307        }
Note: See TracChangeset for help on using the changeset viewer.