Docs: Standardize filter docs in wp-includes/class-http.php to use third-person singular verbs per the inline documentation standards for PHP.

See #36913.

Built from https://develop.svn.wordpress.org/trunk@37514


git-svn-id: http://core.svn.wordpress.org/trunk@37482 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Drew Jaynes 2016-05-22 18:43:27 +00:00
parent abbd18dbb7
commit fe3129f470
2 changed files with 13 additions and 13 deletions

View File

@ -153,7 +153,7 @@ class WP_Http {
$defaults = array(
'method' => 'GET',
/**
* Filter the timeout value for an HTTP request.
* Filters the timeout value for an HTTP request.
*
* @since 2.7.0
*
@ -162,7 +162,7 @@ class WP_Http {
*/
'timeout' => apply_filters( 'http_request_timeout', 5 ),
/**
* Filter the number of redirects allowed during an HTTP request.
* Filters the number of redirects allowed during an HTTP request.
*
* @since 2.7.0
*
@ -170,7 +170,7 @@ class WP_Http {
*/
'redirection' => apply_filters( 'http_request_redirection_count', 5 ),
/**
* Filter the version of the HTTP protocol used in a request.
* Filters the version of the HTTP protocol used in a request.
*
* @since 2.7.0
*
@ -179,7 +179,7 @@ class WP_Http {
*/
'httpversion' => apply_filters( 'http_request_version', '1.0' ),
/**
* Filter the user agent value sent with an HTTP request.
* Filters the user agent value sent with an HTTP request.
*
* @since 2.7.0
*
@ -187,7 +187,7 @@ class WP_Http {
*/
'user-agent' => apply_filters( 'http_headers_useragent', 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' ) ),
/**
* Filter whether to pass URLs through wp_http_validate_url() in an HTTP request.
* Filters whether to pass URLs through wp_http_validate_url() in an HTTP request.
*
* @since 3.6.0
*
@ -217,7 +217,7 @@ class WP_Http {
$r = wp_parse_args( $args, $defaults );
/**
* Filter the arguments used in an HTTP request.
* Filters the arguments used in an HTTP request.
*
* @since 2.7.0
*
@ -231,7 +231,7 @@ class WP_Http {
$r['_redirection'] = $r['redirection'];
/**
* Filter whether to preempt an HTTP request's return value.
* Filters whether to preempt an HTTP request's return value.
*
* Returning a non-false value from the filter will short-circuit the HTTP request and return
* early with that value. A filter should return either:
@ -339,7 +339,7 @@ class WP_Http {
}
/**
* Filter whether SSL should be verified for non-local requests.
* Filters whether SSL should be verified for non-local requests.
*
* @since 2.8.0
*
@ -386,7 +386,7 @@ class WP_Http {
}
/**
* Filter the HTTP API response immediately before the response is returned.
* Filters the HTTP API response immediately before the response is returned.
*
* @since 2.9.0
*
@ -431,7 +431,7 @@ class WP_Http {
$transports = array( 'curl', 'streams' );
/**
* Filter which HTTP transports are available and in what order.
* Filters which HTTP transports are available and in what order.
*
* @since 3.7.0
*
@ -506,7 +506,7 @@ class WP_Http {
return $response;
/**
* Filter the HTTP API response immediately before the response is returned.
* Filters the HTTP API response immediately before the response is returned.
*
* @since 2.9.0
*
@ -775,7 +775,7 @@ class WP_Http {
// Don't block requests back to ourselves by default.
if ( 'localhost' == $check['host'] || ( isset( $home['host'] ) && $home['host'] == $check['host'] ) ) {
/**
* Filter whether to block local requests through the proxy.
* Filters whether to block local requests through the proxy.
*
* @since 2.8.0
*

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.6-alpha-37513';
$wp_version = '4.6-alpha-37514';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.