diff --git a/wp-includes/class-wp-taxonomy.php b/wp-includes/class-wp-taxonomy.php index 1f7eed96f6..a73be9ea40 100644 --- a/wp-includes/class-wp-taxonomy.php +++ b/wp-includes/class-wp-taxonomy.php @@ -278,8 +278,6 @@ final class WP_Taxonomy { * * @since 4.7.0 * - * @global WP $wp Current WordPress environment instance. - * * @param string $taxonomy Taxonomy key, must not exceed 32 characters. * @param array|string $object_type Name of the object type for the taxonomy object. * @param array|string $args Optional. Array or query string of arguments for registering a taxonomy. diff --git a/wp-includes/class-wp-xmlrpc-server.php b/wp-includes/class-wp-xmlrpc-server.php index 9723488083..0c574475b1 100644 --- a/wp-includes/class-wp-xmlrpc-server.php +++ b/wp-includes/class-wp-xmlrpc-server.php @@ -6819,6 +6819,8 @@ class wp_xmlrpc_server extends IXR_Server { * * @since 1.5.0 * + * @global wpdb $wpdb WordPress database abstraction object. + * * @param array $args { * Method arguments. Note: arguments must be ordered as documented. * diff --git a/wp-includes/comment.php b/wp-includes/comment.php index b5be18ed7a..ca79d54a24 100644 --- a/wp-includes/comment.php +++ b/wp-includes/comment.php @@ -3783,6 +3783,8 @@ function wp_register_comment_personal_data_eraser( $erasers ) { * * @since 4.9.6 * + * @global wpdb $wpdb WordPress database abstraction object. + * * @param string $email_address The comment author email address. * @param int $page Comment page. * @return array diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 716be80980..8cb36f5e39 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -163,8 +163,6 @@ function wp_timezone() { * @since 0.71 * @since 5.3.0 Converted into a wrapper for wp_date(). * - * @global WP_Locale $wp_locale WordPress date and time locale object. - * * @param string $format Format to display the date. * @param int|bool $timestamp_with_offset Optional. A sum of Unix timestamp and timezone offset * in seconds. Default false. diff --git a/wp-includes/version.php b/wp-includes/version.php index 6016ba49f8..6aafcc330d 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.2-alpha-54876'; +$wp_version = '6.2-alpha-54877'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.