コード例 #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;
 }