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
1 2 3 4 5 6 7 8 9 10 | 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.