autoload_real.php

File

drupal/core/vendor/composer/autoload_real.php
View source
<?php

// autoload_real.php generated by Composer
class ComposerAutoloaderInitc269e792cec97d4c278bb968546f51b4 {
  private static $loader;
  public static function loadClassLoader($class) {
    if ('Composer\\Autoload\\ClassLoader' === $class) {
      require __DIR__ . '/ClassLoader.php';
    }
  }
  public static function getLoader() {
    if (null !== self::$loader) {
      return self::$loader;
    }
    spl_autoload_register(array(
      'ComposerAutoloaderInitc269e792cec97d4c278bb968546f51b4',
      'loadClassLoader',
    ), true, true);
    self::$loader = $loader = new \Composer\Autoload\ClassLoader();
    spl_autoload_unregister(array(
      'ComposerAutoloaderInitc269e792cec97d4c278bb968546f51b4',
      'loadClassLoader',
    ));
    $vendorDir = dirname(__DIR__);
    $baseDir = dirname(dirname($vendorDir));
    $includePaths = (require __DIR__ . '/include_paths.php');
    array_push($includePaths, get_include_path());
    set_include_path(join(PATH_SEPARATOR, $includePaths));
    $map = (require __DIR__ . '/autoload_namespaces.php');
    foreach ($map as $namespace => $path) {
      $loader
        ->set($namespace, $path);
    }
    $classMap = (require __DIR__ . '/autoload_classmap.php');
    if ($classMap) {
      $loader
        ->addClassMap($classMap);
    }
    $loader
      ->register(true);
    require $vendorDir . '/kriswallsmith/assetic/src/functions.php';
    return $loader;
  }

}

Classes