Lines Matching refs:document
24 private XmlDocument $document; variable in ComboStrap\\Xml\\XmlElement
29 * @param XmlDocument $document - the document
31 public function __construct(DOMElement $domElement, XmlDocument $document) argument
34 $this->document = $document;
65 return new XmlElement($firstChild, $this->document);
76 $childNodes[] = new XmlElement($childNode, $this->document);
92 …$childNodes[] = implode('', XmlElement::create($childNode, $this->document)->getChildrenNodeTextVa…
104 $xpath = $this->document->cssSelectorToXpath($selector);
106 foreach ($this->document->xpath($xpath, $this->domElement) as $child) {
108 $nodes[] = new XmlElement($child, $this->document);
117 return $this->document->toXmlNormalized($this->domElement);
262 return $this->document;
338 return new XmlElement($parentNode, $this->document);