diff --git a/wp-includes/class-wpdb.php b/wp-includes/class-wpdb.php index c6e6099c26..47f291fcb3 100644 --- a/wp-includes/class-wpdb.php +++ b/wp-includes/class-wpdb.php @@ -2866,8 +2866,12 @@ class wpdb { * @return array { * Array of values and formats keyed by their field names. * - * @type mixed $value The value to be formatted. - * @type string $format The format to be mapped to the value. + * @type array ...$0 { + * Value and format for this field. + * + * @type mixed $value The value to be formatted. + * @type string $format The format to be mapped to the value. + * } * } */ protected function process_field_formats( $data, $format ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 6155afd0eb..4374cb4c49 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.9-alpha-60253'; +$wp_version = '6.9-alpha-60254'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.