From 0a8d97ec918aea831fd88856781095767c2af47c Mon Sep 17 00:00:00 2001 From: Alex Pott <alex.a.pott@googlemail.com> Date: Tue, 27 Oct 2015 15:28:29 +0000 Subject: [PATCH] Issue #2600538 by rakesh.gectcr, anil280988, justAChris, jhodgdon: Incorrect @file description in core/ classes - wrong namespace or class name --- .../Plugin/Definition/PluginDefinitionInterface.php | 2 +- core/lib/Drupal/Core/Block/Plugin/Block/PageTitleBlock.php | 2 +- core/lib/Drupal/Core/Cache/CacheableJsonResponse.php | 2 +- core/lib/Drupal/Core/Command/DbImportCommand.php | 2 +- core/lib/Drupal/Core/Menu/Plugin/Block/LocalActionsBlock.php | 2 +- core/lib/Drupal/Core/Render/PlaceholderGenerator.php | 2 +- .../src/Unit/Plugin/migrate/source/d7/BlockedIpsTest.php | 2 +- .../src/Plugin/Block/TestContextAwareUnsatisfiedBlock.php | 2 +- .../src/EventSubscriber/DynamicPageCacheSubscriber.php | 2 +- .../migrate/source/d6/FieldInstancePerFormDisplayTest.php | 2 +- .../file/src/Plugin/migrate/destination/EntityFile.php | 2 +- .../filter/src/Plugin/migrate/process/FilterSettings.php | 2 +- .../forum/src/Tests/Migrate/d7/MigrateForumSettingsTest.php | 2 +- .../Constraint/LinkAccessConstraintValidatorTest.php | 2 +- .../LinkExternalProtocolsConstraintValidatorTest.php | 2 +- .../LinkNotExistingInternalConstraintValidatorTest.php | 2 +- core/modules/migrate/src/Event/MigratePreRowSaveEvent.php | 2 +- core/modules/migrate/src/Tests/MigrationTest.php | 5 +++++ core/modules/node/src/Tests/Views/NodeFieldTokensTest.php | 2 +- .../src/Normalizer/EntityReferenceFieldItemNormalizer.php | 2 +- .../system/src/Plugin/migrate/process/d6/TimeZone.php | 2 +- .../Update/SiteBrandingConvertedIntoBlockUpdateTest.php | 2 +- .../src/CacheableTestDomainObject.php | 2 +- .../tests/modules/form_test/src/Form/FormTestDetailsForm.php | 2 +- .../src/Controller/RenderAttachedTestController.php | 2 +- .../src/Plugin/Block/AttachedRenderingBlock.php | 2 +- .../taxonomy/src/Tests/Views/TaxonomyFieldAllTermsTest.php | 2 +- core/modules/user/src/Plugin/Menu/LoginLogoutMenuLink.php | 2 +- .../tests/Drupal/Tests/Component/Assertion/InspectorTest.php | 2 +- .../DependencyInjection/Compiler/ProxyServicesPassTest.php | 3 +-- .../tests/Drupal/Tests/Core/Extension/InfoParserUnitTest.php | 2 +- 31 files changed, 35 insertions(+), 31 deletions(-) diff --git a/core/lib/Drupal/Component/Plugin/Definition/PluginDefinitionInterface.php b/core/lib/Drupal/Component/Plugin/Definition/PluginDefinitionInterface.php index 3aeeaec5c6ba..4a7e09010937 100644 --- a/core/lib/Drupal/Component/Plugin/Definition/PluginDefinitionInterface.php +++ b/core/lib/Drupal/Component/Plugin/Definition/PluginDefinitionInterface.php @@ -2,7 +2,7 @@ /** * @file - * Contains \Drupal\Component\Plugin\PluginDefinitionInterface. + * Contains \Drupal\Component\Plugin\Definition\PluginDefinitionInterface. */ namespace Drupal\Component\Plugin\Definition; diff --git a/core/lib/Drupal/Core/Block/Plugin/Block/PageTitleBlock.php b/core/lib/Drupal/Core/Block/Plugin/Block/PageTitleBlock.php index d134d00e2579..45e224059f98 100644 --- a/core/lib/Drupal/Core/Block/Plugin/Block/PageTitleBlock.php +++ b/core/lib/Drupal/Core/Block/Plugin/Block/PageTitleBlock.php @@ -2,7 +2,7 @@ /** * @file - * Contains \Drupal\Core\Plugin\Block\PageTitleBlock. + * Contains \Drupal\Core\Block\Plugin\Block\PageTitleBlock. */ namespace Drupal\Core\Block\Plugin\Block; diff --git a/core/lib/Drupal/Core/Cache/CacheableJsonResponse.php b/core/lib/Drupal/Core/Cache/CacheableJsonResponse.php index bc7d2a356ad8..32ea2e45f6f9 100644 --- a/core/lib/Drupal/Core/Cache/CacheableJsonResponse.php +++ b/core/lib/Drupal/Core/Cache/CacheableJsonResponse.php @@ -2,7 +2,7 @@ /** * @file - * Contains \Drupal\Core\Cache\CacheableResponse. + * Contains \Drupal\Core\Cache\CacheableJsonResponse. */ namespace Drupal\Core\Cache; diff --git a/core/lib/Drupal/Core/Command/DbImportCommand.php b/core/lib/Drupal/Core/Command/DbImportCommand.php index a39f6cbde68e..5843e2369193 100644 --- a/core/lib/Drupal/Core/Command/DbImportCommand.php +++ b/core/lib/Drupal/Core/Command/DbImportCommand.php @@ -2,7 +2,7 @@ /** * @file - * Contains \Drupal\Core\Command\DbDumpCommand. + * Contains \Drupal\Core\Command\DbImportCommand. */ namespace Drupal\Core\Command; diff --git a/core/lib/Drupal/Core/Menu/Plugin/Block/LocalActionsBlock.php b/core/lib/Drupal/Core/Menu/Plugin/Block/LocalActionsBlock.php index 42a79fc435d1..fecd97027c05 100644 --- a/core/lib/Drupal/Core/Menu/Plugin/Block/LocalActionsBlock.php +++ b/core/lib/Drupal/Core/Menu/Plugin/Block/LocalActionsBlock.php @@ -2,7 +2,7 @@ /** * @file - * Contains \Drupal\Core\Plugin\Block\LocalActionsBlock. + * Contains \Drupal\Core\Menu\Plugin\Block\LocalActionsBlock. */ namespace Drupal\Core\Menu\Plugin\Block; diff --git a/core/lib/Drupal/Core/Render/PlaceholderGenerator.php b/core/lib/Drupal/Core/Render/PlaceholderGenerator.php index 82e9d09b76c3..a6c4a2343f6f 100644 --- a/core/lib/Drupal/Core/Render/PlaceholderGenerator.php +++ b/core/lib/Drupal/Core/Render/PlaceholderGenerator.php @@ -2,7 +2,7 @@ /** * @file - * Contains \Drupal\Core\Render\Placeholder. + * Contains \Drupal\Core\Render\PlaceholderGenerator. */ namespace Drupal\Core\Render; diff --git a/core/modules/ban/tests/src/Unit/Plugin/migrate/source/d7/BlockedIpsTest.php b/core/modules/ban/tests/src/Unit/Plugin/migrate/source/d7/BlockedIpsTest.php index fc368ef6aac3..b2ef5fd1015d 100644 --- a/core/modules/ban/tests/src/Unit/Plugin/migrate/source/d7/BlockedIpsTest.php +++ b/core/modules/ban/tests/src/Unit/Plugin/migrate/source/d7/BlockedIpsTest.php @@ -2,7 +2,7 @@ /** * @file - * Contains \Drupal\Tests\ban\Unit\Plugin\migrate\source\d7\BlockedIps. + * Contains \Drupal\Tests\ban\Unit\Plugin\migrate\source\d7\BlockedIpsTest. */ namespace Drupal\Tests\ban\Unit\Plugin\migrate\source\d7; diff --git a/core/modules/block/tests/modules/block_test/src/Plugin/Block/TestContextAwareUnsatisfiedBlock.php b/core/modules/block/tests/modules/block_test/src/Plugin/Block/TestContextAwareUnsatisfiedBlock.php index 7232e745a9ba..f30a705c9ded 100644 --- a/core/modules/block/tests/modules/block_test/src/Plugin/Block/TestContextAwareUnsatisfiedBlock.php +++ b/core/modules/block/tests/modules/block_test/src/Plugin/Block/TestContextAwareUnsatisfiedBlock.php @@ -2,7 +2,7 @@ /** * @file - * Contains \Drupal\block_test\Plugin\Block\TestContextAwareBlock. + * Contains \Drupal\block_test\Plugin\Block\TestContextAwareUnsatisfiedBlock. */ namespace Drupal\block_test\Plugin\Block; diff --git a/core/modules/dynamic_page_cache/src/EventSubscriber/DynamicPageCacheSubscriber.php b/core/modules/dynamic_page_cache/src/EventSubscriber/DynamicPageCacheSubscriber.php index 103b303186be..7602b4d26297 100644 --- a/core/modules/dynamic_page_cache/src/EventSubscriber/DynamicPageCacheSubscriber.php +++ b/core/modules/dynamic_page_cache/src/EventSubscriber/DynamicPageCacheSubscriber.php @@ -2,7 +2,7 @@ /** * @file - * Contains \Drupal\dynamic_page_cache\EventSubscriber\DynamicPageacheSubscriber. + * Contains \Drupal\dynamic_page_cache\EventSubscriber\DynamicPageCacheSubscriber. */ namespace Drupal\dynamic_page_cache\EventSubscriber; diff --git a/core/modules/field/tests/src/Unit/Plugin/migrate/source/d6/FieldInstancePerFormDisplayTest.php b/core/modules/field/tests/src/Unit/Plugin/migrate/source/d6/FieldInstancePerFormDisplayTest.php index a57074effb49..82664c74c7fe 100644 --- a/core/modules/field/tests/src/Unit/Plugin/migrate/source/d6/FieldInstancePerFormDisplayTest.php +++ b/core/modules/field/tests/src/Unit/Plugin/migrate/source/d6/FieldInstancePerFormDisplayTest.php @@ -2,7 +2,7 @@ /** * @file - * Contains \Drupal\Tests\field\Unit\Plugin\migrate\source\d6\FieldInstancePerViewModeTest. + * Contains \Drupal\Tests\field\Unit\Plugin\migrate\source\d6\FieldInstancePerFormDisplayTest. */ namespace Drupal\Tests\field\Unit\Plugin\migrate\source\d6; diff --git a/core/modules/file/src/Plugin/migrate/destination/EntityFile.php b/core/modules/file/src/Plugin/migrate/destination/EntityFile.php index 57529e1d990c..c5e898948bca 100644 --- a/core/modules/file/src/Plugin/migrate/destination/EntityFile.php +++ b/core/modules/file/src/Plugin/migrate/destination/EntityFile.php @@ -2,7 +2,7 @@ /** * @file - * Contains \Drupal\migrate\Plugin\migrate\destination\EntityFile. + * Contains \Drupal\file\Plugin\migrate\destination\EntityFile. */ namespace Drupal\file\Plugin\migrate\destination; diff --git a/core/modules/filter/src/Plugin/migrate/process/FilterSettings.php b/core/modules/filter/src/Plugin/migrate/process/FilterSettings.php index 4a7e45b5076c..c359c024d206 100644 --- a/core/modules/filter/src/Plugin/migrate/process/FilterSettings.php +++ b/core/modules/filter/src/Plugin/migrate/process/FilterSettings.php @@ -2,7 +2,7 @@ /** * @file - * Contains \Drupal\migrate\Plugin\migrate\process\FilterSettings. + * Contains \Drupal\filter\Plugin\migrate\process\FilterSettings. */ namespace Drupal\filter\Plugin\migrate\process; diff --git a/core/modules/forum/src/Tests/Migrate/d7/MigrateForumSettingsTest.php b/core/modules/forum/src/Tests/Migrate/d7/MigrateForumSettingsTest.php index 9eb80e7cd753..f702b9a9e7ed 100644 --- a/core/modules/forum/src/Tests/Migrate/d7/MigrateForumSettingsTest.php +++ b/core/modules/forum/src/Tests/Migrate/d7/MigrateForumSettingsTest.php @@ -2,7 +2,7 @@ /** * @file - * Contains \Drupal\forum\Tests\d7\MigrateForumSettingsTest. + * Contains \Drupal\forum\Tests\Migrate\d7\MigrateForumSettingsTest. */ namespace Drupal\forum\Tests\Migrate\d7; diff --git a/core/modules/link/tests/src/Unit/Plugin/Validation/Constraint/LinkAccessConstraintValidatorTest.php b/core/modules/link/tests/src/Unit/Plugin/Validation/Constraint/LinkAccessConstraintValidatorTest.php index 7089e4718cbb..b05d1c5ed600 100644 --- a/core/modules/link/tests/src/Unit/Plugin/Validation/Constraint/LinkAccessConstraintValidatorTest.php +++ b/core/modules/link/tests/src/Unit/Plugin/Validation/Constraint/LinkAccessConstraintValidatorTest.php @@ -2,7 +2,7 @@ /** * @file - * Contains \Drupal\Tests\link\Plugin\Validation\Constraint\LinkAccessConstraintValidatorTest. + * Contains \Drupal\Tests\link\Unit\Plugin\Validation\Constraint\LinkAccessConstraintValidatorTest. */ namespace Drupal\Tests\link\Unit\Plugin\Validation\Constraint; diff --git a/core/modules/link/tests/src/Unit/Plugin/Validation/Constraint/LinkExternalProtocolsConstraintValidatorTest.php b/core/modules/link/tests/src/Unit/Plugin/Validation/Constraint/LinkExternalProtocolsConstraintValidatorTest.php index 4fa92926b24d..7a9c19c5a67e 100644 --- a/core/modules/link/tests/src/Unit/Plugin/Validation/Constraint/LinkExternalProtocolsConstraintValidatorTest.php +++ b/core/modules/link/tests/src/Unit/Plugin/Validation/Constraint/LinkExternalProtocolsConstraintValidatorTest.php @@ -2,7 +2,7 @@ /** * @file - * Contains \Drupal\Tests\link\Plugin\Validation\Constraint\LinkExternalProtocolsConstraintValidatorTest. + * Contains \Drupal\Tests\link\Unit\Plugin\Validation\Constraint\LinkExternalProtocolsConstraintValidatorTest. */ namespace Drupal\Tests\link\Unit\Plugin\Validation\Constraint; diff --git a/core/modules/link/tests/src/Unit/Plugin/Validation/Constraint/LinkNotExistingInternalConstraintValidatorTest.php b/core/modules/link/tests/src/Unit/Plugin/Validation/Constraint/LinkNotExistingInternalConstraintValidatorTest.php index aa2e527bb75a..e23a45b9055b 100644 --- a/core/modules/link/tests/src/Unit/Plugin/Validation/Constraint/LinkNotExistingInternalConstraintValidatorTest.php +++ b/core/modules/link/tests/src/Unit/Plugin/Validation/Constraint/LinkNotExistingInternalConstraintValidatorTest.php @@ -2,7 +2,7 @@ /** * @file - * Contains \Drupal\Tests\link\Plugin\Validation\Constraint\LinkNotExistingInternalConstraintValidatorTest. + * Contains \Drupal\Tests\link\Unit\Plugin\Validation\Constraint\LinkNotExistingInternalConstraintValidatorTest. */ namespace Drupal\Tests\link\Unit\Plugin\Validation\Constraint; diff --git a/core/modules/migrate/src/Event/MigratePreRowSaveEvent.php b/core/modules/migrate/src/Event/MigratePreRowSaveEvent.php index d0ece73fc63e..9df236392170 100644 --- a/core/modules/migrate/src/Event/MigratePreRowSaveEvent.php +++ b/core/modules/migrate/src/Event/MigratePreRowSaveEvent.php @@ -2,7 +2,7 @@ /** * @file - * Contains \Drupal\migrate\Event\MigratePreSaveEvent. + * Contains \Drupal\migrate\Event\MigratePreRowSaveEvent. */ namespace Drupal\migrate\Event; diff --git a/core/modules/migrate/src/Tests/MigrationTest.php b/core/modules/migrate/src/Tests/MigrationTest.php index a46b830a70b0..96dfadab1c77 100644 --- a/core/modules/migrate/src/Tests/MigrationTest.php +++ b/core/modules/migrate/src/Tests/MigrationTest.php @@ -1,5 +1,10 @@ <?php +/** + * @file + * Contains \Drupal\migrate\Tests\MigrationTest. + */ + namespace Drupal\migrate\Tests; use Drupal\migrate\Entity\Migration; diff --git a/core/modules/node/src/Tests/Views/NodeFieldTokensTest.php b/core/modules/node/src/Tests/Views/NodeFieldTokensTest.php index 16a52bf7c157..5cc96c7c8ee4 100644 --- a/core/modules/node/src/Tests/Views/NodeFieldTokensTest.php +++ b/core/modules/node/src/Tests/Views/NodeFieldTokensTest.php @@ -2,7 +2,7 @@ /** * @file - * Contains \Drupal\node\Tests\NodeFieldTokensTest. + * Contains \Drupal\node\Tests\Views\NodeFieldTokensTest. */ namespace Drupal\node\Tests\Views; diff --git a/core/modules/serialization/src/Normalizer/EntityReferenceFieldItemNormalizer.php b/core/modules/serialization/src/Normalizer/EntityReferenceFieldItemNormalizer.php index 846d8837e849..d007bd93118a 100644 --- a/core/modules/serialization/src/Normalizer/EntityReferenceFieldItemNormalizer.php +++ b/core/modules/serialization/src/Normalizer/EntityReferenceFieldItemNormalizer.php @@ -2,7 +2,7 @@ /** * @file - * Contains \Drupal\serialization\Normalizer\FileFieldItemNormalizer. + * Contains \Drupal\serialization\Normalizer\EntityReferenceFieldItemNormalizer. */ namespace Drupal\serialization\Normalizer; diff --git a/core/modules/system/src/Plugin/migrate/process/d6/TimeZone.php b/core/modules/system/src/Plugin/migrate/process/d6/TimeZone.php index dbb4a1d70ed3..ee18072e8999 100644 --- a/core/modules/system/src/Plugin/migrate/process/d6/TimeZone.php +++ b/core/modules/system/src/Plugin/migrate/process/d6/TimeZone.php @@ -2,7 +2,7 @@ /** * @file - * Contains \Drupal\systeml\Plugin\migrate\process\d6\TimeZone. + * Contains \Drupal\system\Plugin\migrate\process\d6\TimeZone. */ namespace Drupal\system\Plugin\migrate\process\d6; diff --git a/core/modules/system/src/Tests/Update/SiteBrandingConvertedIntoBlockUpdateTest.php b/core/modules/system/src/Tests/Update/SiteBrandingConvertedIntoBlockUpdateTest.php index a5e24ce9275b..1dbef094f50c 100644 --- a/core/modules/system/src/Tests/Update/SiteBrandingConvertedIntoBlockUpdateTest.php +++ b/core/modules/system/src/Tests/Update/SiteBrandingConvertedIntoBlockUpdateTest.php @@ -2,7 +2,7 @@ /** * @file - * Contains \Drupal\system\Tests\Update\LocalActionsAndTasksConvertedIntoBlocksUpdateTest. + * Contains \Drupal\system\Tests\Update\SiteBrandingConvertedIntoBlockUpdateTest. */ namespace Drupal\system\Tests\Update; diff --git a/core/modules/system/tests/modules/early_rendering_controller_test/src/CacheableTestDomainObject.php b/core/modules/system/tests/modules/early_rendering_controller_test/src/CacheableTestDomainObject.php index 4df64e261c94..64f63450cefa 100644 --- a/core/modules/system/tests/modules/early_rendering_controller_test/src/CacheableTestDomainObject.php +++ b/core/modules/system/tests/modules/early_rendering_controller_test/src/CacheableTestDomainObject.php @@ -2,7 +2,7 @@ /** * @file - * Contains \Drupal\early_rendering_controller_test\AttachmentsTestDomainObject. + * Contains \Drupal\early_rendering_controller_test\CacheableTestDomainObject. */ namespace Drupal\early_rendering_controller_test; diff --git a/core/modules/system/tests/modules/form_test/src/Form/FormTestDetailsForm.php b/core/modules/system/tests/modules/form_test/src/Form/FormTestDetailsForm.php index 8944a4cc18ff..f32f4b59938b 100644 --- a/core/modules/system/tests/modules/form_test/src/Form/FormTestDetailsForm.php +++ b/core/modules/system/tests/modules/form_test/src/Form/FormTestDetailsForm.php @@ -2,7 +2,7 @@ /** * @file - * Contains \Drupal\form_test\Form\FormTestGroupContainerForm. + * Contains \Drupal\form_test\Form\FormTestDetailsForm. */ namespace Drupal\form_test\Form; diff --git a/core/modules/system/tests/modules/render_attached_test/src/Controller/RenderAttachedTestController.php b/core/modules/system/tests/modules/render_attached_test/src/Controller/RenderAttachedTestController.php index 9897b63aaa19..02ee87d18bab 100644 --- a/core/modules/system/tests/modules/render_attached_test/src/Controller/RenderAttachedTestController.php +++ b/core/modules/system/tests/modules/render_attached_test/src/Controller/RenderAttachedTestController.php @@ -2,7 +2,7 @@ /** * @file - * Contains \Drupal\render_attached_test\Controller\TestController. + * Contains \Drupal\render_attached_test\Controller\RenderAttachedTestController. */ namespace Drupal\render_attached_test\Controller; diff --git a/core/modules/system/tests/modules/render_attached_test/src/Plugin/Block/AttachedRenderingBlock.php b/core/modules/system/tests/modules/render_attached_test/src/Plugin/Block/AttachedRenderingBlock.php index 941689c4d564..1980a97f28c5 100644 --- a/core/modules/system/tests/modules/render_attached_test/src/Plugin/Block/AttachedRenderingBlock.php +++ b/core/modules/system/tests/modules/render_attached_test/src/Plugin/Block/AttachedRenderingBlock.php @@ -2,7 +2,7 @@ /** * @file - * Contains \Drupal\render_attached_test\Plugin\Block\DrupalProcessAttachedBlock. + * Contains \Drupal\render_attached_test\Plugin\Block\AttachedRenderingBlock. */ namespace Drupal\render_attached_test\Plugin\Block; diff --git a/core/modules/taxonomy/src/Tests/Views/TaxonomyFieldAllTermsTest.php b/core/modules/taxonomy/src/Tests/Views/TaxonomyFieldAllTermsTest.php index a913fa654435..f4aba89ff4b3 100644 --- a/core/modules/taxonomy/src/Tests/Views/TaxonomyFieldAllTermsTest.php +++ b/core/modules/taxonomy/src/Tests/Views/TaxonomyFieldAllTermsTest.php @@ -2,7 +2,7 @@ /** * @file - * Contains \Drupal\taxonomy\Tests\Views\TaxonomyFieldAllTerms. + * Contains \Drupal\taxonomy\Tests\Views\TaxonomyFieldAllTermsTest. */ namespace Drupal\taxonomy\Tests\Views; diff --git a/core/modules/user/src/Plugin/Menu/LoginLogoutMenuLink.php b/core/modules/user/src/Plugin/Menu/LoginLogoutMenuLink.php index 278545cecda8..fee7ecc1e9a6 100644 --- a/core/modules/user/src/Plugin/Menu/LoginLogoutMenuLink.php +++ b/core/modules/user/src/Plugin/Menu/LoginLogoutMenuLink.php @@ -2,7 +2,7 @@ /** * @file - * Contains \Drupal\user\Plugin\Menu\MyAccountMenuLink. + * Contains \Drupal\user\Plugin\Menu\LoginLogoutMenuLink. */ namespace Drupal\user\Plugin\Menu; diff --git a/core/tests/Drupal/Tests/Component/Assertion/InspectorTest.php b/core/tests/Drupal/Tests/Component/Assertion/InspectorTest.php index 7c36bda05df5..9075128ffd2c 100644 --- a/core/tests/Drupal/Tests/Component/Assertion/InspectorTest.php +++ b/core/tests/Drupal/Tests/Component/Assertion/InspectorTest.php @@ -1,7 +1,7 @@ <?php /** * @file - * Contains \Drupal\Tests\Component\InspectorTest. + * Contains \Drupal\Tests\Component\Assertion\InspectorTest. */ namespace Drupal\Tests\Component\Assertion; diff --git a/core/tests/Drupal/Tests/Core/DependencyInjection/Compiler/ProxyServicesPassTest.php b/core/tests/Drupal/Tests/Core/DependencyInjection/Compiler/ProxyServicesPassTest.php index 320ce70bf021..a383de9f6b00 100644 --- a/core/tests/Drupal/Tests/Core/DependencyInjection/Compiler/ProxyServicesPassTest.php +++ b/core/tests/Drupal/Tests/Core/DependencyInjection/Compiler/ProxyServicesPassTest.php @@ -2,8 +2,7 @@ /** * @file - * Contains - * \Drupal\Tests\Core\DependencyInjection\Compiler\ProxyServicesPassTest. + * Contains \Drupal\Tests\Core\DependencyInjection\Compiler\ProxyServicesPassTest. */ namespace Drupal\Tests\Core\DependencyInjection\Compiler; diff --git a/core/tests/Drupal/Tests/Core/Extension/InfoParserUnitTest.php b/core/tests/Drupal/Tests/Core/Extension/InfoParserUnitTest.php index 71948e1cd7ba..262446e95984 100644 --- a/core/tests/Drupal/Tests/Core/Extension/InfoParserUnitTest.php +++ b/core/tests/Drupal/Tests/Core/Extension/InfoParserUnitTest.php @@ -2,7 +2,7 @@ /** * @file - * Contains \Drupal\system\Tests\Extension\InfoParserUnitTest. + * Contains \Drupal\Tests\Core\Extension\InfoParserUnitTest. */ namespace Drupal\Tests\Core\Extension; -- GitLab