You are here

public static function S3StorageHandlerModuleDependencyCollector::getSubscribedEvents in Acquia Content Hub 8.2

File

modules/acquia_contenthub_s3/src/EventSubscriber/DependencyCollector/S3StorageHandlerModuleDependencyCollector.php, line 44

Class

S3StorageHandlerModuleDependencyCollector
Subscribes to dependency collection to append module dependency information.

Namespace

Drupal\acquia_contenthub_s3\EventSubscriber\DependencyCollector

Code

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