public function Kernel::unserialize

File

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

Class

Kernel
The Kernel is the heart of the Symfony system.

Namespace

Symfony\Component\HttpKernel

Code

public function unserialize($data) {
  list($environment, $debug) = unserialize($data);
  $this
    ->__construct($environment, $debug);
}