public static function TestContinuousEventSubscriber::getSubscribedEvents in Translation Management Tool 8
File
- tmgmt_test/
src/ EventSubscriber/ TestContinuousEventSubscriber.php, line 55
Class
- TestContinuousEventSubscriber
- Test event subscriber to test the continuous jobs events.
Namespace
Drupal\tmgmt_test\EventSubscriberCode
public static function getSubscribedEvents() {
$events[ContinuousEvents::SHOULD_CREATE_JOB][] = [
'onShouldCreateJob',
];
return $events;
}