From ce599b652a5c9d5db3a27739849e770407a4f5c0 Mon Sep 17 00:00:00 2001 From: hellofromTonya Date: Thu, 4 Nov 2021 13:16:57 +0000 Subject: [PATCH] Coding Standards: Add `public` visibility to methods in `tests/phpunit/includes/`. This commit adds the `public` visibility keyword to each method which did not have an explicit visibility keyword. Why `public`? With no visibility previously declared, these methods are implicitly `public` and available for use. As these are part of the WordPress testing framework (for Core and extenders), changing them to anything else would be a backwards-compatibility break. Props costdev, jrf, hellofromTonya. See #54177. Built from https://develop.svn.wordpress.org/trunk@52009 git-svn-id: http://core.svn.wordpress.org/trunk@51600 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 0fcd3fe784..8ea0690378 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '5.9-alpha-52008'; +$wp_version = '5.9-alpha-52009'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.