From 507cc58f7258695c8209f6c685c4eae38deb87bb Mon Sep 17 00:00:00 2001 From: hellofromTonya Date: Thu, 4 Nov 2021 15:23:59 +0000 Subject: [PATCH] Coding Standards: Add visibility to methods in `tests/phpunit/tests/`. Adds a `public` visibility to test fixtures, tests, data providers, and callbacks methods. Adds a `private` visibility to helper methods within test classes. Renames callbacks and helpers that previously started with a `_` prefix. Why? For consistency and to leverage using the method visibility. Further naming standardizations is beyond the scope of this commit. Props costdev, jrf, hellofromTonya. Fixes #54177. Built from https://develop.svn.wordpress.org/trunk@52010 git-svn-id: http://core.svn.wordpress.org/trunk@51601 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 8ea0690378..e2db690356 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '5.9-alpha-52009'; +$wp_version = '5.9-alpha-52010'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.