You are here

protected function Kernel::doLoadClassCache in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-kernel/Kernel.php \Symfony\Component\HttpKernel\Kernel::doLoadClassCache()
1 call to Kernel::doLoadClassCache()
Kernel::boot in vendor/symfony/http-kernel/Kernel.php
Boots the current kernel.

File

vendor/symfony/http-kernel/Kernel.php, line 404

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);
  }
}