コード例 #1
0
ファイル: Node.php プロジェクト: kidaa30/redcat
 public function remove()
 {
     if ($this->parent) {
         $this->parent->removeChild($this);
     }
     return $this;
 }