diff --git a/core/modules/system/lib/Drupal/system/Tests/Module/ClassLoaderTest.php b/core/modules/system/lib/Drupal/system/Tests/Module/ClassLoaderTest.php index 4b811a2..2fd8eb9 100644 --- a/core/modules/system/lib/Drupal/system/Tests/Module/ClassLoaderTest.php +++ b/core/modules/system/lib/Drupal/system/Tests/Module/ClassLoaderTest.php @@ -13,6 +13,7 @@ * Tests class loading. */ class ClassLoaderTest extends WebTestBase { + /** * The expected result from calling the module-provided class' method. */ @@ -29,7 +30,7 @@ public static function getInfo() { /** * Tests that module-provided classes can be loaded when a module is enabled. * - * @see Drupal\module_autoload_test\SomeClass + * @see \Drupal\module_autoload_test\SomeClass */ function testClassLoading() { // Enable the module_test and module_autoload_test modules. @@ -45,7 +46,7 @@ function testClassLoading() { /** * Tests that module-provided classes can't be loaded from disabled modules. * - * @see Drupal\module_autoload_test\SomeClass + * @see \Drupal\module_autoload_test\SomeClass */ function testClassLoadingDisabledModules() { // Ensure that module_autoload_test is disabled.