コード例 #1
0
ファイル: Tag.php プロジェクト: arcanedev/markup
 /**
  * Remove element from parent
  *
  * @return Tag|null
  */
 public function remove()
 {
     return $this->hasParent() ? $this->parent->removeElement($this) : null;
 }