diff --git a/wp-includes/class-wp-recovery-mode-email-service.php b/wp-includes/class-wp-recovery-mode-email-service.php index 0f9d2f3195..2df52b7f12 100644 --- a/wp-includes/class-wp-recovery-mode-email-service.php +++ b/wp-includes/class-wp-recovery-mode-email-service.php @@ -206,7 +206,14 @@ When seeking help with this issue, you may be asked for some of the following in * * @since 5.2.0 * - * @param array $email Used to build wp_mail(). + * @param array $email { + * Used to build a call to wp_mail(). + * + * @type string|array $to Array or comma-separated list of email addresses to send message. + * @type string $subject Email subject + * @type string $message Message contents + * @type string|array $headers Optional. Additional headers. + * } * @param string $url URL to enter recovery mode. */ $email = apply_filters( 'recovery_mode_email', $email, $url ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 55f744315b..18d8d7ae7b 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.6-alpha-48961'; +$wp_version = '5.6-alpha-48962'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.