public function DebugClassLoader::loadClass

Loads the given class or interface.

Parameters

string $class The name of the class:

Return value

Boolean|null True, if loaded

File

drupal/core/vendor/symfony/class-loader/Symfony/Component/ClassLoader/DebugClassLoader.php, line 79

Class

DebugClassLoader
Autoloader checking if the class is really defined in the file found.

Namespace

Symfony\Component\ClassLoader

Code

public function loadClass($class) {
  if ($file = $this->classFinder
    ->findFile($class)) {
    require $file;
    if (!class_exists($class, false) && !interface_exists($class, false) && (!function_exists('trait_exists') || !trait_exists($class, false))) {
      throw new \RuntimeException(sprintf('The autoloader expected class "%s" to be defined in file "%s". The file was found but the class was not in it, the class name or namespace probably has a typo.', $class, $file));
    }
    return true;
  }
}