示例#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;
 }