You are here

public static function ConfigurationUpdateSubscriber::getSubscribedEvents in Update helper 2.x

Same name and namespace in other branches
  1. 8 modules/update_helper_checklist/src/Events/ConfigurationUpdateSubscriber.php \Drupal\update_helper_checklist\Events\ConfigurationUpdateSubscriber::getSubscribedEvents()

File

modules/update_helper_checklist/src/Events/ConfigurationUpdateSubscriber.php, line 37

Class

ConfigurationUpdateSubscriber
Configuration update subscriber.

Namespace

Drupal\update_helper_checklist\Events

Code

public static function getSubscribedEvents() {
  return [
    UpdateHelperEvents::CONFIGURATION_UPDATE => [
      [
        'onConfigurationUpdate',
        10,
      ],
    ],
  ];
}