Make WordPress Core


Ignore:
Timestamp:
09/09/2023 09:26:01 AM (19 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/term/cache.php

    r55745 r56549  
    7474                    $parent    = wp_insert_term( 'Child' . $i, $tax, array( 'parent' => $parent_id ) );
    7575                    $parent_id = $parent['term_id'];
    76                     $children++;
     76                    ++$children;
    7777                    break;
    7878                case 3:
    7979                    wp_insert_term( 'Grandchild' . $i, $tax, array( 'parent' => $parent_id ) );
    8080                    $parent_id = 0;
    81                     $children++;
     81                    ++$children;
    8282                    break;
    8383            }
     
    9494                $step = 1;
    9595            } else {
    96                 $step++;
     96                ++$step;
    9797            }
    9898        }
     
    419419
    420420        $term_meta = get_term_meta( $term_id, 'foo', true );
    421         $num_queries++;
     421        ++$num_queries;
    422422        $this->assertSame( $term_meta, 'bar' );
    423423        $this->assertSame( $num_queries, get_num_queries() );
Note: See TracChangeset for help on using the changeset viewer.