From d8a7b1276bd5ccdb7498fd46772b90b06ea85742 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 20 Sep 2019 22:40:58 +0000 Subject: [PATCH] Tests: Remove a workaround for `get_called_class()`. The `get_called_class()` function was introduced in PHP 5.3, so no longer needs a workaround. Mark `WP_UnitTestCase_Base::get_called_class()` as deprecated. Leave it in place for now as plugins or themes using the WP unit test framework might still call this method. Props jrf. See #48074. Built from https://develop.svn.wordpress.org/trunk@46221 git-svn-id: http://core.svn.wordpress.org/trunk@46033 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 366d43164d..84f3594908 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.3-alpha-46220'; +$wp_version = '5.3-alpha-46221'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.