예제 #1
0
파일: Tag.php 프로젝트: arcanedev/markup
 /**
  * Remove element from parent
  *
  * @return Tag|null
  */
 public function remove()
 {
     return $this->hasParent() ? $this->parent->removeElement($this) : null;
 }