diff --git a/wp-includes/class-http.php b/wp-includes/class-http.php index 2064950462..4fe9d14de0 100644 --- a/wp-includes/class-http.php +++ b/wp-includes/class-http.php @@ -651,7 +651,12 @@ class WP_Http { * @since 2.7.0 * * @param string $strResponse The full response string. - * @return array Array with 'headers' and 'body' keys. + * @return array { + * Array with response headers and body. + * + * @type string $headers HTTP response headers. + * @type string $body HTTP response body. + * } */ public static function processResponse( $strResponse ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.MethodNameInvalid $res = explode( "\r\n\r\n", $strResponse, 2 ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 094d3b2912..57e39ab986 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.4-alpha-47160'; +$wp_version = '5.4-alpha-47161'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.