public function Kernel::setClassCache

Used internally.

File

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

Class

Kernel
The Kernel is the heart of the Symfony system.

Namespace

Symfony\Component\HttpKernel

Code

public function setClassCache(array $classes) {
  file_put_contents($this
    ->getCacheDir() . '/classes.map', sprintf('<?php return %s;', var_export($classes, true)));
}