From 9e2c6eb624b71a4c6ae32bdc1e3700eabe03f371 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sun, 15 Sep 2019 11:04:55 +0000 Subject: [PATCH] Code Modernisation: Introduce the spread operator in `tests/phpunit/*`. Rather than relying `func_get_args()` to retrieve arbitrary function arguments, we can now use the spread operator to assign them directly to a variable. Props jrf. See #47678. Built from https://develop.svn.wordpress.org/trunk@46127 git-svn-id: http://core.svn.wordpress.org/trunk@45939 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 7532117d42..a961baba8e 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.3-alpha-46126'; +$wp_version = '5.3-alpha-46127'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.