You are here

public function FeedHandlerBase::__construct in Feeds 8.3

Constructs a new FeedHandlerBase object.

Parameters

\Symfony\Component\EventDispatcher\EventDispatcherInterface $event_dispatcher: The event dispatcher.

File

src/FeedHandlerBase.php, line 30

Class

FeedHandlerBase
Provides a base class for entity handlers.

Namespace

Drupal\feeds

Code

public function __construct(EventDispatcherInterface $event_dispatcher) {
  $this
    ->setEventDispatcher($event_dispatcher);
}