diff --git a/src/wp-admin/includes/class-theme-installer-skin.php b/src/wp-admin/includes/class-theme-installer-skin.php
index 38089d6c3a..5bdaada095 100644
a
|
b
|
class Theme_Installer_Skin extends WP_Upgrader_Skin { |
66 | 66 | * @since 5.5.0 |
67 | 67 | * |
68 | 68 | * @param WP_Error $wp_error WP_Error object. |
69 | | * @return bool |
| 69 | * @return bool True if the error should be hidden, false otherwise. |
70 | 70 | */ |
71 | 71 | public function hide_process_failed( $wp_error ) { |
72 | 72 | if ( |
diff --git a/src/wp-admin/includes/class-wp-automatic-updater.php b/src/wp-admin/includes/class-wp-automatic-updater.php
index 083a6dcc36..c5b1500596 100644
a
|
b
|
class WP_Automatic_Updater { |
27 | 27 | * Determines whether the entire automatic updater is disabled. |
28 | 28 | * |
29 | 29 | * @since 3.7.0 |
| 30 | * |
| 31 | * @return bool True if the automatic updater is disabled, false otherwise. |
30 | 32 | */ |
31 | 33 | public function is_disabled() { |
32 | 34 | // Background updates are disabled if you don't want file changes. |