Make WordPress Core


Ignore:
Timestamp:
09/09/2023 09:26:01 AM (15 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/class-wp-privacy-requests-table.php

    r56450 r56549  
    240240
    241241                    if ( $resend && ! is_wp_error( $resend ) ) {
    242                         $count++;
     242                        ++$count;
    243243                    } else {
    244                         $failures++;
     244                        ++$failures;
    245245                    }
    246246                }
     
    287287
    288288                    if ( $result && ! is_wp_error( $result ) ) {
    289                         $count++;
     289                        ++$count;
    290290                    }
    291291                }
     
    310310                foreach ( $request_ids as $request_id ) {
    311311                    if ( wp_delete_post( $request_id, true ) ) {
    312                         $count++;
     312                        ++$count;
    313313                    } else {
    314                         $failures++;
     314                        ++$failures;
    315315                    }
    316316                }
Note: See TracChangeset for help on using the changeset viewer.