Make WordPress Core


Ignore:
Timestamp:
05/23/2020 11:36:36 AM (5 years ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Use strict comparison for count() calls.

See #49542.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/formatting.php

    r47808 r47848  
    407407        $opening_tag = true;
    408408        $name_offset = 1;
    409     } elseif ( 0 == count( $stack ) ) {
     409    } elseif ( 0 === count( $stack ) ) {
    410410        // Stack is empty. Just stop.
    411411        return;
Note: See TracChangeset for help on using the changeset viewer.