You are here

public static function DrupalMediaEmbedCollector::getSubscribedEvents in Dependency Calculation 8

File

src/EventSubscriber/DependencyCollector/DrupalMediaEmbedCollector.php, line 22

Class

DrupalMediaEmbedCollector
Class DrupalMediaEmbedCollector.

Namespace

Drupal\depcalc\EventSubscriber\DependencyCollector

Code

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