Make WordPress Core

Changeset 38043


Ignore:
Timestamp:
07/13/2016 10:23:01 AM (9 years ago)
Author:
johnbillion
Message:

HTTP API: Remove duplicate documentation for the http_api_debug hook.

Fixes #37081

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-http.php

    r37989 r38043  
    495495        $response = $transports[$class]->request( $url, $args );
    496496
    497         /**
    498          * Fires after an HTTP API response is received and before the response is returned.
    499          *
    500          * @since 2.8.0
    501          *
    502          * @param array|WP_Error $response HTTP response or WP_Error object.
    503          * @param string         $context  Context under which the hook is fired.
    504          * @param string         $class    HTTP transport used.
    505          * @param array          $args     HTTP request arguments.
    506          * @param string         $url      The request URL.
    507          */
     497        /** This action is documented in wp-includes/class-http.php */
    508498        do_action( 'http_api_debug', $response, 'response', $class, $args, $url );
    509499
Note: See TracChangeset for help on using the changeset viewer.