Example #1
0
 /**
  * @param $child
  *
  * @return Element|Tag|Field
  */
 public function append($child)
 {
     if (!$this->documentElement) {
         return $this->appendChild($this->importNode($this->check($child)));
     }
     return $this->documentElement->appendChild($this->importNode($this->check($child)));
 }