From 6f19452077e5598a968ad0e207f58ae98f9fd097 Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Mon, 22 Aug 2016 21:27:02 +0000 Subject: [PATCH] HTTP: in `WP_HTTP_Response`, the `@param` declarations for `$status` and `$headers` were swapped. Let us correct this. See #37771. git-svn-id: https://develop.svn.wordpress.org/trunk@38315 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/class-wp-http-response.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-includes/class-wp-http-response.php b/src/wp-includes/class-wp-http-response.php index e46b01e080..da83de1d58 100644 --- a/src/wp-includes/class-wp-http-response.php +++ b/src/wp-includes/class-wp-http-response.php @@ -28,7 +28,7 @@ class WP_HTTP_Response { * * @since 4.4.0 * @access public - * @var int + * @var array */ public $headers; @@ -37,7 +37,7 @@ class WP_HTTP_Response { * * @since 4.4.0 * @access public - * @var array + * @var int */ public $status;