예제 #1
0
파일: Cdata.php 프로젝트: volux/dom
 /**
  * @return Element|Tag|Field
  */
 public function end()
 {
     return $this->ownerDocument->context();
 }
예제 #2
0
파일: Set.php 프로젝트: volux/dom
 /**
  * @return $this|Set
  */
 public function andSelf()
 {
     $this->append($this->ownerDocument->context());
     return $this;
 }