protected function Kernel::doLoadClassCache

1 call to Kernel::doLoadClassCache()
Kernel::boot in drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Kernel.php
Boots the current kernel.

File

drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Kernel.php, line 456

Class

Kernel
The Kernel is the heart of the Symfony system.

Namespace

Symfony\Component\HttpKernel

Code

protected function doLoadClassCache($name, $extension) {
  if (!$this->booted && is_file($this
    ->getCacheDir() . '/classes.map')) {
    ClassCollectionLoader::load(include $this
      ->getCacheDir() . '/classes.map', $this
      ->getCacheDir(), $name, $this->debug, false, $extension);
  }
}