You are here

public static function AfterParseBase::getSubscribedEvents in Feeds 8.3

File

src/EventSubscriber/AfterParseBase.php, line 19

Class

AfterParseBase
A base class for manipulating parser results.

Namespace

Drupal\feeds\EventSubscriber

Code

public static function getSubscribedEvents() {
  $events = [];
  $events[FeedsEvents::PARSE][] = [
    'afterParse',
    FeedsEvents::AFTER,
  ];
  return $events;
}