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
This commit is contained in:
Sergey Biryukov 2019-08-05 08:11:28 +00:00
parent 89058d3c1c
commit 7110d5507f

View File

@ -38,7 +38,7 @@ class WP_Http_Curl {
* The maximum amount of data to receive from the remote server. * The maximum amount of data to receive from the remote server.
* *
* @since 3.6.0 * @since 3.6.0
* @var int * @var int|false
*/ */
private $max_body_length = false; private $max_body_length = false;
@ -46,7 +46,7 @@ class WP_Http_Curl {
* The file resource used for streaming to file. * The file resource used for streaming to file.
* *
* @since 3.6.0 * @since 3.6.0
* @var resource * @var resource|false
*/ */
private $stream_handle = false; private $stream_handle = false;