You are here

public static function FeedSubscriber::getSubscribedEvents in Feeds 8.3

File

tests/modules/feeds_test_multiple_cron_runs/src/EventSubscriber/FeedSubscriber.php, line 17

Class

FeedSubscriber
Subscribes to feeds events.

Namespace

Drupal\feeds_test_multiple_cron_runs\EventSubscriber

Code

public static function getSubscribedEvents() {
  return [
    FeedsEvents::PROCESS => [
      [
        'afterProcess',
        FeedsEvents::AFTER,
      ],
    ],
  ];
}