Make WordPress Core


Ignore:
Timestamp:
09/09/2023 09:26:01 AM (17 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/class-wp-customize-manager.php

    r56462 r56549  
    10781078            }
    10791079            if ( update_post_meta( $autosave_autodraft_post->ID, '_customize_restore_dismissed', true ) ) {
    1080                 $dismissed++;
     1080                ++$dismissed;
    10811081            }
    10821082        }
     
    14801480            if ( ! $nav_menu_term_id ) {
    14811481                while ( isset( $changeset_data[ sprintf( 'nav_menu[%d]', $placeholder_id ) ] ) ) {
    1482                     $placeholder_id--;
     1482                    --$placeholder_id;
    14831483                }
    14841484                $nav_menu_term_id    = $placeholder_id;
Note: See TracChangeset for help on using the changeset viewer.