public static function ConfigurationUpdateSubscriber::getSubscribedEvents in Update helper 8
Same name and namespace in other branches
- 2.x 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\EventsCode
public static function getSubscribedEvents() {
  return [
    UpdateHelperEvents::CONFIGURATION_UPDATE => [
      [
        'onConfigurationUpdate',
        10,
      ],
    ],
  ];
}