Code Modernization: Change create_function() in phpunit/includes/plural-form-function.php to closure.

`create_function()` has been deprecated in PHP >= 7.2 and removed in PHP 8.

The only instance left in core was used in a test that was being skipped on PHP >= 7.2. This allows the test to run again.

Follow-up to [41722], [41730].

Props jrf.
Fixes #50899.
Built from https://develop.svn.wordpress.org/trunk@48790


git-svn-id: http://core.svn.wordpress.org/trunk@48552 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2020-08-13 12:34:10 +00:00
parent 07ec574a54
commit 703be7e1f3

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.6-alpha-48789';
$wp_version = '5.6-alpha-48790';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.