Make WordPress Core


Ignore:
Timestamp:
09/09/2023 09:26:01 AM (16 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/post/getPageByPath.php

    r55745 r56549  
    344344        $found = get_page_by_path( 'foo', OBJECT, 'wptests_pt' );
    345345        $this->assertSame( $p2, $found->ID );
    346         $num_queries++;
     346        ++$num_queries;
    347347        $this->assertSame( $num_queries, get_num_queries() );
    348348    }
     
    374374        $found = get_page_by_path( 'bar' );
    375375        $this->assertSame( $page, $found->ID );
    376         $num_queries++;
     376        ++$num_queries;
    377377        $this->assertSame( $num_queries, get_num_queries() );
    378378    }
Note: See TracChangeset for help on using the changeset viewer.