diff --git a/core/modules/migrate/tests/src/Unit/RowTest.php b/core/modules/migrate/tests/src/Unit/RowTest.php
index 6bf26e94e95f9160d2aea2bb31b99f416aeb669d..81453d1ce1d1c82393a63fc82e5490a6e01beabc 100644
--- a/core/modules/migrate/tests/src/Unit/RowTest.php
+++ b/core/modules/migrate/tests/src/Unit/RowTest.php
@@ -361,7 +361,7 @@ public function getDataProvider() {
    * @param array $expected_values
    *   An array of expected values.
    *
-   * @covers::getMultiple
+   * @covers ::getMultiple
    * @dataProvider getMultipleDataProvider
    */
   public function testGetMultiple(array $keys, array $expected_values) {
diff --git a/core/modules/views/tests/src/Kernel/Handler/FilterCombineTest.php b/core/modules/views/tests/src/Kernel/Handler/FilterCombineTest.php
index eb5fc520550ea6c4902d723c9108f2133c983590..f71bf167862d223521056280e0435eca5f0e6b53 100644
--- a/core/modules/views/tests/src/Kernel/Handler/FilterCombineTest.php
+++ b/core/modules/views/tests/src/Kernel/Handler/FilterCombineTest.php
@@ -286,7 +286,7 @@ public function testNonFieldsRow() {
   /**
    * Tests the Combine field filter using the 'equal' operator.
    *
-   * @covers::opEqual
+   * @covers ::opEqual
    */
   public function testFilterCombineEqual() {
     $view = Views::getView('test_view');
@@ -334,7 +334,7 @@ public function testFilterCombineEqual() {
   /**
    * Tests the Combine field filter using the 'not equal' operator.
    *
-   * @covers::opEqual
+   * @covers ::opEqual
    */
   public function testFilterCombineNotEqual(): void {
     $view = Views::getView('test_view');
diff --git a/core/phpstan-baseline.neon b/core/phpstan-baseline.neon
index 8f2a879b76cc845002e79cc89efe8864d6dd8918..6a18cc3136a91edf95b9a55e79a2bd87382796c1 100644
--- a/core/phpstan-baseline.neon
+++ b/core/phpstan-baseline.neon
@@ -1850,11 +1850,6 @@ parameters:
 			count: 1
 			path: modules/migrate/tests/src/Unit/MigrateSqlIdMapTest.php
 
-		-
-			message: "#^Annotation \"@covers\\:\\:getMultiple\" is invalid, \"@covers\" should be followed by a space and a value\\.$#"
-			count: 1
-			path: modules/migrate/tests/src/Unit/RowTest.php
-
 		-
 			message: "#^@dataProvider providerTestLog\\(\\) related method not found\\.$#"
 			count: 1
@@ -3090,11 +3085,6 @@ parameters:
 			count: 1
 			path: modules/views/tests/src/Kernel/Handler/FieldFieldTest.php
 
-		-
-			message: "#^Annotation \"@covers\\:\\:opEqual\" is invalid, \"@covers\" should be followed by a space and a value\\.$#"
-			count: 2
-			path: modules/views/tests/src/Kernel/Handler/FilterCombineTest.php
-
 		-
 			message: "#^Variable \\$rand1 might not be defined\\.$#"
 			count: 2
@@ -3550,11 +3540,6 @@ parameters:
 			count: 1
 			path: tests/Drupal/Tests/Component/Utility/HtmlTest.php
 
-		-
-			message: "#^Annotation \"@covers\\:\\:ensureComposerVersion\" is invalid, \"@covers\" should be followed by a space and a value\\.$#"
-			count: 1
-			path: tests/Drupal/Tests/Composer/ComposerTest.php
-
 		-
 			message: "#^Result of static method Drupal\\\\Composer\\\\Composer\\:\\:ensureComposerVersion\\(\\) \\(void\\) is used\\.$#"
 			count: 1
@@ -3964,8 +3949,3 @@ parameters:
 			message: "#^Missing call to parent\\:\\:setUp\\(\\) method\\.$#"
 			count: 1
 			path: tests/Drupal/Tests/Core/Utility/TokenTest.php
-
-		-
-			message: "#^Annotation \"@covers\\:\\:buildLocalUrl\" is invalid, \"@covers\" should be followed by a space and a value\\.$#"
-			count: 1
-			path: tests/Drupal/Tests/Core/Utility/UnroutedUrlAssemblerTest.php
diff --git a/core/tests/Drupal/Tests/Composer/ComposerTest.php b/core/tests/Drupal/Tests/Composer/ComposerTest.php
index e577945ab3b8fb3dfd99ca6f0d589befba4e6438..38b4d51a3605191d3d8eb1fe70e247127b27cd64 100644
--- a/core/tests/Drupal/Tests/Composer/ComposerTest.php
+++ b/core/tests/Drupal/Tests/Composer/ComposerTest.php
@@ -14,7 +14,7 @@ class ComposerTest extends UnitTestCase {
   /**
    * Verify that Composer::ensureComposerVersion() doesn't break.
    *
-   * @covers::ensureComposerVersion
+   * @covers ::ensureComposerVersion
    */
   public function testEnsureComposerVersion() {
     try {
diff --git a/core/tests/Drupal/Tests/Core/Utility/UnroutedUrlAssemblerTest.php b/core/tests/Drupal/Tests/Core/Utility/UnroutedUrlAssemblerTest.php
index 3815d38fda9b582df9b7bfa1c56dc0daf842ba20..8acd7ea36411e83f922536c8392cfb8bb30b44fd 100644
--- a/core/tests/Drupal/Tests/Core/Utility/UnroutedUrlAssemblerTest.php
+++ b/core/tests/Drupal/Tests/Core/Utility/UnroutedUrlAssemblerTest.php
@@ -107,7 +107,7 @@ public function providerTestAssembleWithExternalUrl() {
 
   /**
    * @covers ::assemble
-   * @covers::buildLocalUrl
+   * @covers ::buildLocalUrl
    *
    * @dataProvider providerTestAssembleWithLocalUri
    */