function RouteMethodSubscriber::getSubscribedEvents
File
- 
              core/
lib/ Drupal/ Core/ EventSubscriber/ RouteMethodSubscriber.php, line 38  
Class
- RouteMethodSubscriber
 - Provides a default value for the HTTP method restriction on routes.
 
Namespace
Drupal\Core\EventSubscriberCode
public static function getSubscribedEvents() : array {
  // Set a higher priority to ensure that routes get the default HTTP methods
  // as early as possible.
  $events[RoutingEvents::ALTER][] = [
    'onRouteBuilding',
    5000,
  ];
  return $events;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.