From 6c1f6ba92e1f13ca887ff84a87a6b2540c2290d9 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 29 Nov 2022 12:34:20 +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. This continues the previous efforts to make sure visibility is declared on all methods. Note: This will be enforced by WPCS 3.0.0. Follow-up to [51919], [52009], [52010]. Props jrf. See #56791. Built from https://develop.svn.wordpress.org/trunk@54889 git-svn-id: http://core.svn.wordpress.org/trunk@54441 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 8f9d8ead1f..ae50d29d8d 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.2-alpha-54888'; +$wp_version = '6.2-alpha-54889'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.