From 7110d5507f3a3aa1fd608f9f2fb842b5368d5f1e Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 5 Aug 2019 08:11:28 +0000 Subject: [PATCH] Docs: Correct `@type` annotation for `WP_Http_Curl` properties. Props diddledan. Fixes #46860. git-svn-id: https://develop.svn.wordpress.org/trunk@45749 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/class-wp-http-curl.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-includes/class-wp-http-curl.php b/src/wp-includes/class-wp-http-curl.php index aa8593326e..1911982c66 100644 --- a/src/wp-includes/class-wp-http-curl.php +++ b/src/wp-includes/class-wp-http-curl.php @@ -38,7 +38,7 @@ class WP_Http_Curl { * The maximum amount of data to receive from the remote server. * * @since 3.6.0 - * @var int + * @var int|false */ private $max_body_length = false; @@ -46,7 +46,7 @@ class WP_Http_Curl { * The file resource used for streaming to file. * * @since 3.6.0 - * @var resource + * @var resource|false */ private $stream_handle = false;