diff --git a/wp-includes/l10n/class-wp-translation-controller.php b/wp-includes/l10n/class-wp-translation-controller.php index 810dcbb052..295e3fcac7 100644 --- a/wp-includes/l10n/class-wp-translation-controller.php +++ b/wp-includes/l10n/class-wp-translation-controller.php @@ -282,16 +282,16 @@ final class WP_Translation_Controller { * * @since 6.5.0 * - * @param array{0: string, 1: string} $plurals { + * @param array $plurals { * Pair of singular and plural translations. * * @type string $0 Singular translation. * @type string $1 Plural translation. * } - * @param int $number Number of items. - * @param string $context Optional. Context for the string. Default empty string. - * @param string $textdomain Optional. Text domain. Default 'default'. - * @param string $locale Optional. Locale. Default current locale. + * @param int $number Number of items. + * @param string $context Optional. Context for the string. Default empty string. + * @param string $textdomain Optional. Text domain. Default 'default'. + * @param string|null $locale Optional. Locale. Default current locale. * @return string|false Translation on success, false otherwise. */ public function translate_plural( array $plurals, int $number, string $context = '', string $textdomain = 'default', ?string $locale = null ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index b94b8a2173..bfc3cb70a9 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.6-alpha-58150'; +$wp_version = '6.6-alpha-58155'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.