public function RegistryAutoloadTestTest::__construct in Registry Autoload 7
Same name in this branch
- 7 tests/modules/registry_autoload_test/includes/RegistryAutoloadTestTest.class.php \RegistryAutoloadTestTest::__construct()
- 7 tests/modules/registry_autoload_test/src/Cache/RegistryAutoloadTestTest.php \Drupal\registry_autoload_test\Cache\RegistryAutoloadTestTest::__construct()
- 7 tests/modules/registry_autoload_test/lib/Drupal/Core/Cache/RegistryAutoloadTestTest.php \Drupal\Core\Cache\RegistryAutoloadTestTest::__construct()
- 7 tests/modules/registry_autoload_test/custom/some/name/space/RegistryAutoloadTestTest.php \custom\some\name\space\RegistryAutoloadTestTest::__construct()
- 7 tests/modules/registry_autoload_test/sites/all/libraries/test-library/lib/SomeVendor/SomeComponent/RegistryAutoloadTestTest.php \SomeVendor\SomeComponent\RegistryAutoloadTestTest::__construct()
- 7 tests/modules/registry_autoload_test/sites/all/libraries/test-library/src/SomeOtherVendor/SomeComponent/RegistryAutoloadTestTest.php \SomeOtherVendor\SomeComponent\RegistryAutoloadTestTest::__construct()
Constructs a RegistryAutoloadTestTest object.
File
- tests/
modules/ registry_autoload_test/ includes/ RegistryAutoloadTestTest.class.php, line 11 - Tests that non namespaced classes get registered correctly.
Class
- RegistryAutoloadTestTest
- @file Tests that non namespaced classes get registered correctly.
Code
public function __construct() {
print "Hello No Namespace\n";
}