You are here

public function FeedsParserResult::__construct in Feeds 8.2

Constructor.

File

lib/Drupal/feeds/FeedsParserResult.php, line 18

Class

FeedsParserResult
A result of a parsing stage.

Namespace

Drupal\feeds

Code

public function __construct($items = array()) {
  $this->title = '';
  $this->description = '';
  $this->link = '';
  $this->items = $items;
}