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/src/wp-admin/includes/ajax-actions.php

    r56482 r56549  
    21502150            $parent_post = get_post( $parent );
    21512151            $parent      = $parent_post->post_parent;
    2152             $level++;
     2152            ++$level;
    21532153        }
    21542154    }
     
    22122212        $parent_tag = get_term( $parent, $taxonomy );
    22132213        $parent     = $parent_tag->parent;
    2214         $level++;
     2214        ++$level;
    22152215    }
    22162216
     
    28222822
    28232823        if ( set_post_thumbnail( $post_id, $thumbnail_id ) ) {
    2824             $success++;
     2824            ++$success;
    28252825        }
    28262826    }
Note: See TracChangeset for help on using the changeset viewer.