You are here

public function FeedsParserResult::currentItem in Feeds 8.2

Return value

Current result item.

File

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

Class

FeedsParserResult
A result of a parsing stage.

Namespace

Drupal\feeds

Code

public function currentItem() {
  return empty($this->current_item) ? NULL : $this->current_item;
}