예제 #1
0
파일: Tag.php 프로젝트: dev-lucid/html
 public function paragraph($text) : TagInterface
 {
     if ($this->allowChildren === false) {
         throw new Exception\ChildrenNotAllowed(get_class($this));
     }
     $this->add(html::p($text));
     return $this;
 }