diff options
Diffstat (limited to 'src/wp-includes/class-wp-http-encoding.php')
-rw-r--r-- | src/wp-includes/class-wp-http-encoding.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wp-includes/class-wp-http-encoding.php b/src/wp-includes/class-wp-http-encoding.php index b30e73d8e0..a85bdf13a3 100644 --- a/src/wp-includes/class-wp-http-encoding.php +++ b/src/wp-includes/class-wp-http-encoding.php @@ -45,7 +45,7 @@ class WP_Http_Encoding { * * @param string $compressed String to decompress. * @param int $length The optional length of the compressed data. - * @return string|bool False on failure. + * @return string|false False on failure. */ public static function decompress( $compressed, $length = null ) { @@ -98,7 +98,7 @@ class WP_Http_Encoding { * @link https://www.php.net/manual/en/function.gzinflate.php#77336 * * @param string $gzData String to decompress. - * @return string|bool False on failure. + * @return string|false False on failure. */ public static function compatible_gzinflate( $gzData ) { |