From f44ab3ab48667cf2a829e303b562cff297bc205d Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 2 Sep 2022 00:13:10 +0000 Subject: [PATCH] Tests: Add `@coversNothing` tag for PHP polyfill tests in `phpunit/tests/compat/`. The `@covers` tags for these tests were previously removed to avoid notices when generating the code coverage report on PHP versions where these functions are natively available and not user-defined: {{{ "@covers ::array_key_first" is invalid "@covers ::array_key_last" is invalid "@covers ::hash_hmac" is invalid "@covers ::is_countable" is invalid "@covers ::is_iterable" is invalid "@covers ::mb_strlen" is invalid "@covers ::mb_substr" is invalid "@covers ::str_contains" is invalid "@covers ::str_ends_with" is invalid "@covers ::str_starts_with" is invalid }}} Explicitly including a `@coversNothing` annotation in this case appears to be a more appropriate option than not including any annotation at all. Follow-up to [51852], [52038], [52039], [52040], [54049]. See #39265, #55652. Built from https://develop.svn.wordpress.org/trunk@54060 git-svn-id: http://core.svn.wordpress.org/trunk@53619 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 d7490caf8e..ca9c1777fd 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.1-alpha-54059'; +$wp_version = '6.1-alpha-54060'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.