You are here

public static function ResourceRoutes::getSubscribedEvents in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/rest/src/Routing/ResourceRoutes.php \Drupal\rest\Routing\ResourceRoutes::getSubscribedEvents()

File

core/modules/rest/src/Routing/ResourceRoutes.php, line 153

Class

ResourceRoutes
Subscriber for REST-style routes.

Namespace

Drupal\rest\Routing

Code

public static function getSubscribedEvents() {
  $events[RoutingEvents::DYNAMIC] = 'onDynamicRouteEvent';
  return $events;
}