You are here

public static function RoutePathSubscriber::getSubscribedEvents in Tome 8

File

modules/tome_static/src/EventSubscriber/RoutePathSubscriber.php, line 74

Class

RoutePathSubscriber
Adds route paths to the list of paths to export.

Namespace

Drupal\tome_static\EventSubscriber

Code

public static function getSubscribedEvents() {
  $events[TomeStaticEvents::COLLECT_PATHS][] = [
    'collectPaths',
  ];
  return $events;
}