You are here

public static function ParamConversionEnhancer::getSubscribedEvents in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Routing/Enhancer/ParamConversionEnhancer.php \Drupal\Core\Routing\Enhancer\ParamConversionEnhancer::getSubscribedEvents()

File

core/lib/Drupal/Core/Routing/Enhancer/ParamConversionEnhancer.php, line 87

Class

ParamConversionEnhancer
Provides a route enhancer that handles parameter conversion.

Namespace

Drupal\Core\Routing\Enhancer

Code

public static function getSubscribedEvents() {
  $events[KernelEvents::EXCEPTION][] = [
    'onException',
    75,
  ];
  return $events;
}