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-rewrite.php

    r43571 r45590  
    18351835     */
    18361836    public function init() {
    1837         $this->extra_rules         = $this->non_wp_rules = $this->endpoints = array();
     1837        $this->extra_rules         = array();
     1838        $this->non_wp_rules        = array();
     1839        $this->endpoints           = array();
    18381840        $this->permalink_structure = get_option( 'permalink_structure' );
    18391841        $this->front               = substr( $this->permalink_structure, 0, strpos( $this->permalink_structure, '%' ) );
Note: See TracChangeset for help on using the changeset viewer.