Docs: Change type of `WP_Upgrader_Skin::$result` to 'string|bool|WP_Error'.
`$result` can be `true` too, see `Language_Pack_Upgrader::bulk_upgrade()`. See #32246. Built from https://develop.svn.wordpress.org/trunk@38134 git-svn-id: http://core.svn.wordpress.org/trunk@38075 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
2cbe10e79c
commit
a20e16d3c6
|
@ -20,8 +20,11 @@ class WP_Upgrader_Skin {
|
|||
public $done_footer = false;
|
||||
|
||||
/**
|
||||
* Holds the result of an upgrade.
|
||||
*
|
||||
* @var string|false|WP_Error
|
||||
* @since 2.8.0
|
||||
* @access public
|
||||
* @var string|bool|WP_Error
|
||||
*/
|
||||
public $result = false;
|
||||
public $options = array();
|
||||
|
@ -51,10 +54,14 @@ class WP_Upgrader_Skin {
|
|||
}
|
||||
|
||||
/**
|
||||
* Sets the result of an upgrade.
|
||||
*
|
||||
* @param string|false|WP_Error $result
|
||||
* @since 2.8.0
|
||||
* @access public
|
||||
*
|
||||
* @param string|bool|WP_Error $result The result of an upgrade.
|
||||
*/
|
||||
public function set_result($result) {
|
||||
public function set_result( $result ) {
|
||||
$this->result = $result;
|
||||
}
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.6-beta4-38133';
|
||||
$wp_version = '4.6-beta4-38134';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue