public function KernelDestructionSubscriber::onKernelTerminate in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/EventSubscriber/KernelDestructionSubscriber.php \Drupal\Core\EventSubscriber\KernelDestructionSubscriber::onKernelTerminate()
Invoked by the terminate kernel event.
Parameters
\Symfony\Component\HttpKernel\Event\PostResponseEvent $event: The event object.
File
- core/
lib/ Drupal/ Core/ EventSubscriber/ KernelDestructionSubscriber.php, line 45
Class
- KernelDestructionSubscriber
- Destructs services that are initiated and tagged with "needs_destruction".
Namespace
Drupal\Core\EventSubscriberCode
public function onKernelTerminate(PostResponseEvent $event) {
foreach ($this->services as $id) {
// Check if the service was initialized during this request, destruction
// is not necessary if the service was not used.
if ($this->container
->initialized($id)) {
$service = $this->container
->get($id);
$service
->destruct();
}
}
}