- /**
- * Retrieve collection first item
- *
- * @return \Magento\Framework\DataObject
- */
- public function getFirstItem()
- {
- $this->load();
-
- if (count($this->_items)) {
- reset($this->_items);
- return current($this->_items);
- }
-
- return $this->_entityFactory->create($this->_itemObjectClass);
- }