From 0c59fd02bb3540837a3d9019632417d2ff2bce0d Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Mon, 14 Dec 2015 19:21:35 +0000 Subject: [PATCH] Docs: Add missing parameter and return descriptions to the DocBlock for `WP_Http_Curl::stream_headers()`. See #32246. Built from https://develop.svn.wordpress.org/trunk@35930 git-svn-id: http://core.svn.wordpress.org/trunk@35894 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-http-curl.php | 10 +++++++--- wp-includes/version.php | 2 +- 2 files changed, 8 insertions(+), 4 deletions(-) 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.