コード例 #1
0
ファイル: HtmlElement.php プロジェクト: spatie/html-element
 protected function parseAttributes(array $attributes)
 {
     $this->attributes->setAttributes($attributes);
 }
コード例 #2
0
ファイル: TagRenderer.php プロジェクト: spatie/html-element
 protected function renderOpeningTag() : string
 {
     return $this->attributes->isEmpty() ? "<{$this->element}>" : "<{$this->element} {$this->attributes}>";
 }