You are here

public function AbstractFeed::getElement in Zircon Profile 8

Same name in this branch
  1. 8 vendor/zendframework/zend-feed/src/Reader/AbstractFeed.php \Zend\Feed\Reader\AbstractFeed::getElement()
  2. 8 vendor/zendframework/zend-feed/src/Reader/Feed/AbstractFeed.php \Zend\Feed\Reader\Feed\AbstractFeed::getElement()
Same name and namespace in other branches
  1. 8.0 vendor/zendframework/zend-feed/src/Reader/Feed/AbstractFeed.php \Zend\Feed\Reader\Feed\AbstractFeed::getElement()

Get the DOMElement representing the items/feed element

Return value

DOMElement

File

vendor/zendframework/zend-feed/src/Reader/Feed/AbstractFeed.php, line 183

Class

AbstractFeed

Namespace

Zend\Feed\Reader\Feed

Code

public function getElement() {
  return $this
    ->getDomDocument()->documentElement;
}