You are here

public function AbstractFeed::setDomDocument in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/zendframework/zend-feed/src/Reader/Extension/AbstractFeed.php \Zend\Feed\Reader\Extension\AbstractFeed::setDomDocument()

Set the DOM document

Parameters

DOMDocument $dom:

Return value

AbstractFeed

File

vendor/zendframework/zend-feed/src/Reader/Extension/AbstractFeed.php, line 52

Class

AbstractFeed

Namespace

Zend\Feed\Reader\Extension

Code

public function setDomDocument(DOMDocument $dom) {
  $this->domDocument = $dom;
  return $this;
}