public function DrupalKernel::serialize

Overrides Kernel::serialize

File

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

Class

DrupalKernel
The DrupalKernel class is the core of Drupal itself.

Namespace

Drupal\Core

Code

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