DrupalKernel::shutdown

public DrupalKernel::shutdown()

Shuts down the kernel.

Overrides DrupalKernelInterface::shutdown

File

core/lib/Drupal/Core/DrupalKernel.php, line 471

Class

DrupalKernel
The DrupalKernel class is the core of Drupal itself.

Namespace

Drupal\Core

Code

public function shutdown() {
  if (FALSE === $this->booted) {
    return;
  }
  $this->container->get('stream_wrapper_manager')->unregister();
  $this->booted = FALSE;
  $this->container = NULL;
  $this->moduleList = NULL;
  $this->moduleData = array();
}
doc_Drupal
2016-10-29 09:03:04
Comments
Leave a Comment

Please login to continue.