Example #1
0
File: Cdata.php Project: volux/dom
 /**
  * @return Element|Tag|Field
  */
 public function end()
 {
     return $this->ownerDocument->context();
 }
Example #2
0
File: Set.php Project: volux/dom
 /**
  * @return $this|Set
  */
 public function andSelf()
 {
     $this->append($this->ownerDocument->context());
     return $this;
 }