public static function CommandSubscriber::getSubscribedEvents in Update helper 8
Same name and namespace in other branches
- 2.x src/Events/CommandSubscriber.php \Drupal\update_helper\Events\CommandSubscriber::getSubscribedEvents()
File
- src/
Events/ CommandSubscriber.php, line 33
Class
- CommandSubscriber
- Subscriber for "generate:configuration:update" command.
Namespace
Drupal\update_helper\EventsCode
public static function getSubscribedEvents() {
return [
UpdateHelperEvents::COMMAND_GCU_EXECUTE => [
[
'onExecute',
10,
],
],
];
}