Docs: Correct method reference in a comment for `Bulk_Plugin_Upgrader_Skin::$plugin_info`.

See [42677] for `Bulk_Theme_Upgrader_Skin::$theme_info`.

See #42505.
Built from https://develop.svn.wordpress.org/trunk@42873


git-svn-id: http://core.svn.wordpress.org/trunk@42703 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2018-03-23 00:34:29 +00:00
parent 18169f0ae1
commit 0895f04705
2 changed files with 3 additions and 3 deletions

View File

@ -16,7 +16,7 @@
* @see Bulk_Upgrader_Skin * @see Bulk_Upgrader_Skin
*/ */
class Bulk_Plugin_Upgrader_Skin extends Bulk_Upgrader_Skin { class Bulk_Plugin_Upgrader_Skin extends Bulk_Upgrader_Skin {
public $plugin_info = array(); // Plugin_Upgrader::bulk() will fill this in. public $plugin_info = array(); // Plugin_Upgrader::bulk_upgrade() will fill this in.
public function add_strings() { public function add_strings() {
parent::add_strings(); parent::add_strings();
@ -56,7 +56,7 @@ class Bulk_Plugin_Upgrader_Skin extends Bulk_Upgrader_Skin {
* @since 3.0.0 * @since 3.0.0
* *
* @param string[] $update_actions Array of plugin action links. * @param string[] $update_actions Array of plugin action links.
* @param array $plugin_info Array of information for the last-updated plugin. * @param array $plugin_info Array of information for the last-updated plugin.
*/ */
$update_actions = apply_filters( 'update_bulk_plugins_complete_actions', $update_actions, $this->plugin_info ); $update_actions = apply_filters( 'update_bulk_plugins_complete_actions', $update_actions, $this->plugin_info );

View File

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