HTTP: in `WP_HTTP_Response`, the `@param` declarations for `$status` and `$headers` were swapped. Let us correct this.

See #37771.

Built from https://develop.svn.wordpress.org/trunk@38315


git-svn-id: http://core.svn.wordpress.org/trunk@38256 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Scott Taylor 2016-08-22 21:28:27 +00:00
parent ca70683001
commit b0fa9aac6b
2 changed files with 3 additions and 3 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;

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.7-alpha-38314';
$wp_version = '4.7-alpha-38315';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.