mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 22:30:04 +00:00
Coding Standards: Fix the Squiz.PHP.DisallowMultipleAssignments violations in wp-includes.
See #47632. git-svn-id: https://develop.svn.wordpress.org/trunk@45590 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -52,15 +52,18 @@ class WP_Http_Encoding {
|
||||
return $compressed;
|
||||
}
|
||||
|
||||
if ( false !== ( $decompressed = @gzinflate( $compressed ) ) ) {
|
||||
$decompressed = @gzinflate( $compressed );
|
||||
if ( false !== $decompressed ) {
|
||||
return $decompressed;
|
||||
}
|
||||
|
||||
if ( false !== ( $decompressed = self::compatible_gzinflate( $compressed ) ) ) {
|
||||
$decompressed = self::compatible_gzinflate( $compressed );
|
||||
if ( false !== $decompressed ) {
|
||||
return $decompressed;
|
||||
}
|
||||
|
||||
if ( false !== ( $decompressed = @gzuncompress( $compressed ) ) ) {
|
||||
$decompressed = @gzuncompress( $compressed );
|
||||
if ( false !== $decompressed ) {
|
||||
return $decompressed;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user