diff --git a/wp-includes/pluggable.php b/wp-includes/pluggable.php index 9eae6214b3..95a2aafb0f 100644 --- a/wp-includes/pluggable.php +++ b/wp-includes/pluggable.php @@ -20,9 +20,9 @@ if ( ! function_exists( 'wp_set_current_user' ) ) : * * @global WP_User $current_user The current user object which holds the user data. * - * @param int $id User ID - * @param string $name User's username - * @return WP_User Current user User object + * @param int|null $id User ID. + * @param string $name User's username. + * @return WP_User Current user User object. */ function wp_set_current_user( $id, $name = '' ) { global $current_user; diff --git a/wp-includes/version.php b/wp-includes/version.php index 2870b6a33a..d715109544 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '5.9-alpha-52207'; +$wp_version = '5.9-alpha-52208'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.