From 46b0f1bba1680f6ff4b9b1285bfe2e5dccbe996b Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 26 Sep 2023 00:25:17 +0000 Subject: [PATCH] Code Modernization: Rename parameters that use reserved keywords in `phpunit/tests/media.php`. While using reserved PHP keywords as parameter name labels is allowed, in the context of function calls using named parameters in PHP 8.0+, this will easily lead to confusion. To avoid that, it is recommended not to use reserved keywords as function parameter names. This commit renames the `$match` parameter to `$matches` in shortcode image tests. Note: This is enforced by WPCS 3.0.0. Follow-up to [56693]. See #58831. Built from https://develop.svn.wordpress.org/trunk@56694 git-svn-id: http://core.svn.wordpress.org/trunk@56206 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/version.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/version.php b/wp-includes/version.php index f461397d37..4b98c9ac10 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.4-alpha-56693'; +$wp_version = '6.4-alpha-56694'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.