HTTP API: Remove duplicate documentation for the `http_api_debug` hook.

Fixes #37081


git-svn-id: https://develop.svn.wordpress.org/trunk@38043 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
John Blackbourn 2016-07-13 10:23:01 +00:00
parent f51e0ae92a
commit 967fcbdc61
1 changed files with 1 additions and 11 deletions

View File

@ -494,17 +494,7 @@ class WP_Http {
$response = $transports[$class]->request( $url, $args );
/**
* Fires after an HTTP API response is received and before the response is returned.
*
* @since 2.8.0
*
* @param array|WP_Error $response HTTP response or WP_Error object.
* @param string $context Context under which the hook is fired.
* @param string $class HTTP transport used.
* @param array $args HTTP request arguments.
* @param string $url The request URL.
*/
/** This action is documented in wp-includes/class-http.php */
do_action( 'http_api_debug', $response, 'response', $class, $args, $url );
if ( is_wp_error( $response ) )