X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/874d2a2f468a0d1e69aab49b1fe2d9d79d3e1142..46588ee871246a923d972538dbc93b26f4fda932:/wp-includes/http.php diff --git a/wp-includes/http.php b/wp-includes/http.php index 838ed1ff..02b653f5 100644 --- a/wp-includes/http.php +++ b/wp-includes/http.php @@ -4,7 +4,7 @@ * * Will eventually replace and standardize the WordPress HTTP requests made. * - * @link http://trac.wordpress.org/ticket/4779 HTTP API Proposal + * @link https://core.trac.wordpress.org/ticket/4779 HTTP API Proposal * * @package WordPress * @subpackage HTTP @@ -246,7 +246,7 @@ function wp_remote_retrieve_header( $response, $header ) { * @since 2.7.0 * * @param array $response HTTP response. - * @return string the response code. Empty string on incorrect parameter given. + * @return int|string The response code as an integer. Empty string on incorrect parameter given. */ function wp_remote_retrieve_response_code( $response ) { if ( is_wp_error($response) || ! isset($response['response']) || ! is_array($response['response'])) @@ -381,8 +381,8 @@ function get_allowed_http_origins() { * * @since 3.4.0 * - * @param string Origin URL. If not provided, the value of get_http_origin() is used. - * @return bool True if the origin is allowed. False otherwise. + * @param null|string $origin Origin URL. If not provided, the value of get_http_origin() is used. + * @return bool|null True if the origin is allowed. False otherwise. */ function is_allowed_http_origin( $origin = null ) { $origin_arg = $origin; @@ -441,7 +441,8 @@ function send_origin_headers() { * * @since 3.5.2 * - * @return mixed URL or false on failure. + * @param string $url + * @return false|string URL or false on failure. */ function wp_http_validate_url( $url ) { $original_url = $url;