1 | <?php |
||
8 | final class Standard implements TagInterface |
||
9 | { |
||
10 | private $attributes; |
||
11 | private $name; |
||
12 | private $children; |
||
13 | |||
14 | public function __construct(string $name, AttributeSet $attributes = null, ElementSet $children = null) |
||
20 | |||
21 | public function render(): string |
||
28 | |||
29 | private function renderChildren(): string |
||
39 | } |
||
40 |