Make WordPress Core


Ignore:
Timestamp:
02/09/2020 04:52:28 PM (5 years ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Use Yoda conditions where appropriate.

See #49222.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-http-proxy.php

    r46232 r47219  
    175175
    176176        // Malformed URL, can not process, but this could mean ssl, so let through anyway.
    177         if ( $check === false ) {
     177        if ( false === $check ) {
    178178            return true;
    179179        }
Note: See TracChangeset for help on using the changeset viewer.