From 22aa7cb48af220df66fb796cc2606ccecbb5637f Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 20 May 2024 14:40:16 +0000 Subject: [PATCH] Tests: Correct a number of invalid `@covers` tags. This resolves a few warnings when running PHPUnit with the code coverage report: {{{ "@covers WP_Privacy_Requests_List_Table::get_views" is invalid "@covers WP_Block_Bindings_Registry::register_block_bindings_source" is invalid "@covers WP_Block_Patterns_Registry::_register_theme_block_patterns" is invalid }}} The two removed `@coversDefaultClass` annotations are redundant, as the class name is already included in the individual `@covers` tags. Removing them allows `@covers ::_register_theme_block_patterns` to work as expected, where `_register_theme_block_patterns` is an standalone function, not a class method. Follow-up to [54215], [56733], [57373], [57562]. See #60705. Built from https://develop.svn.wordpress.org/trunk@58176 git-svn-id: http://core.svn.wordpress.org/trunk@57639 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 c9378a82cb..9c31b7cc92 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.6-alpha-58175'; +$wp_version = '6.6-alpha-58176'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.