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

Throws

\RuntimeException

File

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

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))) {
      if (false !== strpos($class, '/')) {
        throw new \RuntimeException(sprintf('Trying to autoload a class with an invalid name "%s". Be careful that the namespace separator is "\\" in PHP, not "/".', $class));
      }
      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;
  }
}