Make WordPress Core


Ignore:
Timestamp:
09/09/2023 09:26:01 AM (13 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/src/wp-includes/pomo/po.php

    r55990 r56549  
    343343            $msgstr_index = 0;
    344344            while ( true ) {
    345                 $lineno++;
     345                ++$lineno;
    346346                $line = PO::read_line( $f );
    347347                if ( ! $line ) {
     
    366366                    if ( self::is_final( $context ) ) {
    367367                        PO::read_line( $f, 'put-back' );
    368                         $lineno--;
     368                        --$lineno;
    369369                        break;
    370370                    }
     
    378378                    if ( self::is_final( $context ) ) {
    379379                        PO::read_line( $f, 'put-back' );
    380                         $lineno--;
     380                        --$lineno;
    381381                        break;
    382382                    }
     
    389389                    if ( self::is_final( $context ) ) {
    390390                        PO::read_line( $f, 'put-back' );
    391                         $lineno--;
     391                        --$lineno;
    392392                        break;
    393393                    }
Note: See TracChangeset for help on using the changeset viewer.