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
This commit is contained in:
John Blackbourn
2025-05-26 21:47:32 +00:00
parent 90b7e1792f
commit 4f4928f69e
2 changed files with 7 additions and 3 deletions

View File

@@ -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 ) {

View File

@@ -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.