public static function KernelDestructionSubscriber::getSubscribedEvents in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/EventSubscriber/KernelDestructionSubscriber.php \Drupal\Core\EventSubscriber\KernelDestructionSubscriber::getSubscribedEvents()
Registers the methods in this class that should be listeners.
Return value
array An array of event listener definitions.
File
- core/
lib/ Drupal/ Core/ EventSubscriber/ KernelDestructionSubscriber.php, line 62
Class
- KernelDestructionSubscriber
- Destructs services that are initiated and tagged with "needs_destruction".
Namespace
Drupal\Core\EventSubscriberCode
public static function getSubscribedEvents() {
$events[KernelEvents::TERMINATE][] = [
'onKernelTerminate',
100,
];
return $events;
}