function EntityResourcePostRouteSubscriber::getSubscribedEvents
File
- 
              core/modules/ rest/ src/ EventSubscriber/ EntityResourcePostRouteSubscriber.php, line 67 
Class
- EntityResourcePostRouteSubscriber
- Generates a 'create' route for an entity type if it has a REST POST route.
Namespace
Drupal\rest\EventSubscriberCode
public static function getSubscribedEvents() : array {
  // Priority -10, to run after \Drupal\rest\Routing\ResourceRoutes, which has
  // priority 0.
  $events[RoutingEvents::DYNAMIC][] = [
    'onDynamicRouteEvent',
    -10,
  ];
  return $events;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
