You are here

public static function CsvFeed::getSubscribedEvents in Feeds 8.3

File

tests/modules/feeds_test_alter_source/src/EventSubscriber/CsvFeed.php, line 17

Class

CsvFeed
Alters the parsed result for the feed type 'csv'.

Namespace

Drupal\feeds_test_alter_source\EventSubscriber

Code

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