You are here

public static function PathAliasEntityCollector::getSubscribedEvents in Dependency Calculation 8

File

src/EventSubscriber/DependencyCollector/PathAliasEntityCollector.php, line 23

Class

PathAliasEntityCollector

Namespace

Drupal\depcalc\EventSubscriber\DependencyCollector

Code

public static function getSubscribedEvents() {
  $events = [];
  $events[DependencyCalculatorEvents::CALCULATE_DEPENDENCIES][] = [
    'onCalculateDependencies',
  ];
  return $events;
}