public function Kernel::setClassCache in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/http-kernel/Kernel.php \Symfony\Component\HttpKernel\Kernel::setClassCache()
Used internally.
File
- vendor/
symfony/ http-kernel/ Kernel.php, line 367
Class
- Kernel
- The Kernel is the heart of the Symfony system.
Namespace
Symfony\Component\HttpKernelCode
public function setClassCache(array $classes) {
file_put_contents($this
->getCacheDir() . '/classes.map', sprintf('<?php return %s;', var_export($classes, true)));
}