diff --git a/wp-includes/class-wp-application-passwords.php b/wp-includes/class-wp-application-passwords.php index 0fd5d8b40a..b19b87377f 100644 --- a/wp-includes/class-wp-application-passwords.php +++ b/wp-includes/class-wp-application-passwords.php @@ -172,14 +172,13 @@ class WP_Application_Passwords { } /** - * Check if application name exists before for this user. + * Checks if application name exists for this user. * * @since 5.7.0 * * @param int $user_id User ID. * @param string $name Application name. - * - * @return bool Provided application name exists or not. + * @return bool Whether provided application name exists or not. */ public static function application_name_exists_for_user( $user_id, $name ) { $passwords = static::get_user_application_passwords( $user_id ); diff --git a/wp-includes/version.php b/wp-includes/version.php index bafe2daed5..02883bc93a 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.7-alpha-50055'; +$wp_version = '5.7-alpha-50057'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.