public function FakeAutoloader::loadClass in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/Core/DrupalKernel/DrupalKernelTest.php \Drupal\Tests\Core\DrupalKernel\FakeAutoloader::loadClass()
Loads the given class or interface.
Return value
null This class never loads.
File
- core/
tests/ Drupal/ Tests/ Core/ DrupalKernel/ DrupalKernelTest.php, line 227
Class
- FakeAutoloader
- A fake autoloader for testing
Namespace
Drupal\Tests\Core\DrupalKernelCode
public function loadClass() {
return NULL;
}