public function Kernel::unserialize in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/http-kernel/Kernel.php \Symfony\Component\HttpKernel\Kernel::unserialize()
 
File
- vendor/
symfony/ http-kernel/ Kernel.php, line 755  
Class
- Kernel
 - The Kernel is the heart of the Symfony system.
 
Namespace
Symfony\Component\HttpKernelCode
public function unserialize($data) {
  list($environment, $debug) = unserialize($data);
  $this
    ->__construct($environment, $debug);
}