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
This commit is contained in:
parent
f32fba3dab
commit
0c59fd02bb
|
@ -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;
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue