You are here

public function JSONFIReader::get in Feed Import 8

This method returns the next available item or NULL if there are no items left.

Return value

mixed The read item

Overrides FeedImportReader::get

File

feed_import_base/src/JSONFIReader.php, line 55

Class

JSONFIReader
JSON Reader class, used to read data from json files.

Namespace

Drupal\feed_import_base

Code

public function get() {
  return array_shift($this->items);
}