From 4f4928f69e505bfa4ffd67e16535d8bdb269dced Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Mon, 26 May 2025 21:47:32 +0000 Subject: [PATCH] Docs: Correct the description of the `wpdb::process_field_formats()` return value. See #63166 Built from https://develop.svn.wordpress.org/trunk@60254 git-svn-id: http://core.svn.wordpress.org/trunk@59590 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wpdb.php | 8 ++++++-- wp-includes/version.php | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) 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.