public function Kernel::serialize

1 method overrides Kernel::serialize()
DrupalKernel::serialize in drupal/core/lib/Drupal/Core/DrupalKernel.php

File

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

Class

Kernel
The Kernel is the heart of the Symfony system.

Namespace

Symfony\Component\HttpKernel

Code

public function serialize() {
  return serialize(array(
    $this->environment,
    $this->debug,
  ));
}