diff --git a/wp-includes/class-wp-http-curl.php b/wp-includes/class-wp-http-curl.php index d59ddecfad..3339a5e3f7 100644 --- a/wp-includes/class-wp-http-curl.php +++ b/wp-includes/class-wp-http-curl.php @@ -298,13 +298,17 @@ class WP_Http_Curl { } /** - * Grab the headers of the cURL request + * Grabs the headers of the cURL request. * - * Each header is sent individually to this callback, so we append to the $header property for temporary storage + * Each header is sent individually to this callback, so we append to the `$header` property + * for temporary storage * * @since 3.2.0 * @access private - * @return int + * + * @param resource $handle cURL handle. + * @param string $headers cURL request headers. + * @return int Length of the request headers. */ private function stream_headers( $handle, $headers ) { $this->headers .= $headers; diff --git a/wp-includes/version.php b/wp-includes/version.php index 706d9bd9b9..b145c8345c 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-alpha-35929'; +$wp_version = '4.5-alpha-35930'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.