You are here

public function FeedsFileFetcherResult::__construct in Feeds 8.2

Constructor.

Overrides FeedsFetcherResult::__construct

File

lib/Drupal/feeds/FeedsFileFetcherResult.php, line 20
Home of the FeedsFileFetcher and related classes.

Class

FeedsFileFetcherResult
Definition of the import batch object created on the fetching stage by FeedsFileFetcher.

Namespace

Drupal\feeds

Code

public function __construct($file_path) {
  parent::__construct('');
  $this->file_path = $file_path;
}