From b7ef3ffdd3adc601d9de0af740f5ff82f8661453 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 27 Mar 2023 14:13:22 +0000 Subject: [PATCH] Docs: Add missing `@return` tag for `WP_Automatic_Updater::is_disabled()`. Follow-up to [25421], [25823], [25859]. Props sakibmd, jrf, patelmohip, akmelias. See #57680. Built from https://develop.svn.wordpress.org/trunk@55594 git-svn-id: http://core.svn.wordpress.org/trunk@55106 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/class-wp-automatic-updater.php | 2 ++ wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/wp-admin/includes/class-wp-automatic-updater.php b/wp-admin/includes/class-wp-automatic-updater.php index eecc52a069..e9c428eca9 100644 --- a/wp-admin/includes/class-wp-automatic-updater.php +++ b/wp-admin/includes/class-wp-automatic-updater.php @@ -27,6 +27,8 @@ class WP_Automatic_Updater { * Determines whether the entire automatic updater is disabled. * * @since 3.7.0 + * + * @return bool True if the automatic updater is disabled, false otherwise. */ public function is_disabled() { // Background updates are disabled if you don't want file changes. diff --git a/wp-includes/version.php b/wp-includes/version.php index 57509eb9b3..4c8cba0a4d 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.3-alpha-55593'; +$wp_version = '6.3-alpha-55594'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.