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();
}
Please login to continue.