Make WordPress Core


Ignore:
Timestamp:
06/26/2020 06:38:51 PM (5 years ago)
Author:
johnbillion
Message:

Docs: Miscellaneous docblock improvements.

See #49572.

File:
1 edited

Legend:

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

    r48109 r48184  
    161161     * @since 2.8.0
    162162     *
    163      * @param string $uri URI to check.
    164      * @return bool True, to send through the proxy and false if, the proxy should not be used.
     163     * @param string $uri URL of the request.
     164     * @return bool Whether to send the request through the proxy.
    165165     */
    166166    public function send_through_proxy( $uri ) {
     
    182182         * @since 3.5.0
    183183         *
    184          * @param bool|null $override Whether to override the request result. Default null.
    185          * @param string    $uri      URL to check.
    186          * @param array     $check    Associative array result of parsing the request URI.
    187          * @param array     $home     Associative array result of parsing the site URL.
     184         * @param bool|null $override Whether to send the request through the proxy. Default null.
     185         * @param string    $uri      URL of the request.
     186         * @param array     $check    Associative array result of parsing the request URL with `parse_url()`.
     187         * @param array     $home     Associative array result of parsing the site URL with `parse_url()`.
    188188         */
    189189        $result = apply_filters( 'pre_http_send_through_proxy', null, $uri, $check, $home );
Note: See TracChangeset for help on using the changeset viewer.