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/pomo/plural-forms.php

    r43653 r45590  
    241241            return $this->cache[ $num ];
    242242        }
    243         return $this->cache[ $num ] = $this->execute( $num );
     243        $this->cache[ $num ] = $this->execute( $num );
     244        return $this->cache[ $num ];
    244245    }
    245246
Note: See TracChangeset for help on using the changeset viewer.