Docs: Remove duplicated DocBlock for `http_response` hook in `WP_Http::_dispatch_request()`.

The filter is already documented in `WP_Http::request()`.

See #42505.
Built from https://develop.svn.wordpress.org/trunk@42750


git-svn-id: http://core.svn.wordpress.org/trunk@42580 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2018-02-25 21:32:30 +00:00
parent 510feac5bb
commit bd9cdde1eb
2 changed files with 2 additions and 10 deletions

View File

@ -574,15 +574,7 @@ class WP_Http {
return $response;
}
/**
* Filters the HTTP API response immediately before the response is returned.
*
* @since 2.9.0
*
* @param array $response HTTP response.
* @param array $args HTTP request arguments.
* @param string $url The request URL.
*/
/** This action is documented in wp-includes/class-http.php */
return apply_filters( 'http_response', $response, $args, $url );
}

View File

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