Make WordPress Core


Ignore:
Timestamp:
07/02/2019 11:41:16 PM (5 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-hook.php

    r45420 r45590  
    273273
    274274        do {
    275             $this->current_priority[ $nesting_level ] = $priority = current( $this->iterations[ $nesting_level ] );
     275            $this->current_priority[ $nesting_level ] = current( $this->iterations[ $nesting_level ] );
     276            $priority                                 = $this->current_priority[ $nesting_level ];
    276277
    277278            foreach ( $this->callbacks[ $priority ] as $the_ ) {
Note: See TracChangeset for help on using the changeset viewer.