From 7261695f7d70ee1244dd1f5dc730c2a9ddde14e0 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 17 Dec 2019 15:23:33 +0000 Subject: [PATCH] Docs: Correct `@type` for `timeout` argument in `WP_Http::request()`. Props georgestephanis, benedictsinger. Fixes #49005. git-svn-id: https://develop.svn.wordpress.org/trunk@46970 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/class-http.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-includes/class-http.php b/src/wp-includes/class-http.php index d7a4a6f1f4..a961808ff3 100644 --- a/src/wp-includes/class-http.php +++ b/src/wp-includes/class-http.php @@ -109,7 +109,7 @@ class WP_Http { * 'TRACE', 'OPTIONS', or 'PATCH'. * Some transports technically allow others, but should not be * assumed. Default 'GET'. - * @type int $timeout How long the connection should stay open in seconds. Default 5. + * @type float $timeout How long the connection should stay open in seconds. Default 5. * @type int $redirection Number of allowed redirects. Not supported by all transports * Default 5. * @type string $httpversion Version of the HTTP protocol to use. Accepts '1.0' and '1.1'. @@ -155,7 +155,7 @@ class WP_Http { * @since 2.7.0 * @since 5.1.0 The `$url` parameter was added. * - * @param int $timeout_value Time in seconds until a request times out. Default 5. + * @param float $timeout_value Time in seconds until a request times out. Default 5. * @param string $url The request URL. */ 'timeout' => apply_filters( 'http_request_timeout', 5, $url ),