Version 1
[yaffs-website] / web / core / modules / system / tests / modules / module_autoload_test / src / SomeClass.php
1 <?php
2
3 namespace Drupal\module_autoload_test;
4
5 class SomeClass {
6   public function testMethod() {
7     return 'Drupal\\module_autoload_test\\SomeClass::testMethod() was invoked.';
8   }
9
10 }