You are here

public function DynamicItem::toArray in Feeds 8.3

Converts the item to an array.

Return value

array The data of the item.

Overrides ItemInterface::toArray

File

src/Feeds/Item/DynamicItem.php, line 37

Class

DynamicItem
Defines an item class for when a parser has a dynamic set of fields.

Namespace

Drupal\feeds\Feeds\Item

Code

public function toArray() {
  return $this->data;
}