public function DrupalKernel::unserialize

Overrides Kernel::unserialize

File

drupal/core/lib/Drupal/Core/DrupalKernel.php, line 146
Definition of Drupal\Core\DrupalKernel.

Class

DrupalKernel
The DrupalKernel class is the core of Drupal itself.

Namespace

Drupal\Core

Code

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