Make WordPress Core


Ignore:
Timestamp:
07/02/2019 11:41:16 PM (6 years ago)
Author:
pento
Message:

Coding Standards: Fix the Squiz.PHP.DisallowMultipleAssignments violations in wp-includes.

See #47632.

File:
1 edited

Legend:

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

    r43661 r45590  
    143143     */
    144144    public function all_deps( $handles, $recursion = false, $group = false ) {
    145         if ( ! $handles = (array) $handles ) {
     145        $handles = (array) $handles;
     146        if ( ! $handles ) {
    146147            return false;
    147148        }
Note: See TracChangeset for help on using the changeset viewer.