Make WordPress Core


Ignore:
Timestamp:
09/09/2023 09:26:01 AM (18 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/blocks/wpBlockList.php

    r56547 r56549  
    7272        foreach ( $blocks as $block ) {
    7373            $this->assertSame( 'core/example', $block->name );
    74             $assertions++;
     74            ++$assertions;
    7575            foreach ( $block->inner_blocks as $inner_block ) {
    7676                $this->assertSame( 'core/example', $inner_block->name );
    77                 $assertions++;
     77                ++$assertions;
    7878            }
    7979        }
     
    8484            $block = $blocks->current();
    8585            $this->assertSame( 0, $key );
    86             $assertions++;
     86            ++$assertions;
    8787            $this->assertSame( 'core/example', $block->name );
    88             $assertions++;
     88            ++$assertions;
    8989            $blocks->next();
    9090        }
Note: See TracChangeset for help on using the changeset viewer.