You are here

final public function FeedImportReader::__construct in Feed Import 8

Constructor of reader. Constructor is final but you'll have to implement init() to init your reader.

Parameters

array $options An array of options to pass to reader:

File

feed_import_base/src/FeedImportReader.php, line 18

Class

FeedImportReader
Abstract implementation of reader.

Namespace

Drupal\feed_import_base

Code

public final function __construct(array $options = array()) {
  $this
    ->setOptions($options);
}