public function DrupalKernel::shutdown in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/DrupalKernel.php \Drupal\Core\DrupalKernel::shutdown()
Shuts down the kernel.
Overrides DrupalKernelInterface::shutdown
File
- core/
lib/ Drupal/ Core/ DrupalKernel.php, line 456 - Contains \Drupal\Core\DrupalKernel.
Class
- DrupalKernel
- The DrupalKernel class is the core of Drupal itself.
Namespace
Drupal\CoreCode
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();
}