Make WordPress Core


Ignore:
Timestamp:
04/10/2023 12:54:28 PM (3 years ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Use strict comparison where count() is involved.

Follow-up to [1636], [6974], [8114], [10322], [13326], [14760], [18006], [18541], [19743], [23249], [24115], [33359].

Props aristath, poena, afercia, SergeyBiryukov.
See #57839.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-xmlrpc-server.php

    r55539 r55642  
    42444244
    42454245        // If no specific options where asked for, return all of them.
    4246         if ( count( $options ) == 0 ) {
     4246        if ( count( $options ) === 0 ) {
    42474247            $options = array_keys( $this->blog_options );
    42484248        }
Note: See TracChangeset for help on using the changeset viewer.