You are here

public static function CommandGcuSubscriber::getSubscribedEvents in Update helper 8

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

File

modules/update_helper_checklist/src/Events/CommandGcuSubscriber.php, line 92

Class

CommandGcuSubscriber
Subscriber for "generate:configuration:update" command.

Namespace

Drupal\update_helper_checklist\Events

Code

public static function getSubscribedEvents() {
  return [
    UpdateHelperEvents::COMMAND_GCU_CONFIGURE => [
      [
        'onConfigure',
        10,
      ],
    ],
    UpdateHelperEvents::COMMAND_GCU_INTERACT => [
      [
        'onInteract',
        10,
      ],
    ],
    UpdateHelperEvents::COMMAND_GCU_EXECUTE => [
      [
        'onExecute',
        10,
      ],
    ],
  ];
}