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
This commit is contained in:
Scott Taylor 2016-08-22 21:27:02 +00:00
parent 670878cbaa
commit 6f19452077
1 changed files with 2 additions and 2 deletions

View File

@ -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;