1 | <?php |
||
4 | class Element { |
||
5 | |||
6 | private static $EMPTY_ELEMENTS = [ |
||
7 | 'link', |
||
8 | 'track', |
||
9 | 'param', |
||
10 | 'area', |
||
11 | 'command', |
||
12 | 'col', |
||
13 | 'base', |
||
14 | 'meta', |
||
15 | 'hr', |
||
16 | 'source', |
||
17 | 'img', |
||
18 | 'keygen', |
||
19 | 'br', |
||
20 | 'wbr', |
||
21 | 'colgroup', |
||
22 | 'input', |
||
23 | ]; |
||
24 | |||
25 | private $name; |
||
26 | |||
27 | private $attributes; |
||
28 | |||
29 | private $children; |
||
30 | |||
31 | public function __construct($name, $attributes = [], $children = []) { |
||
36 | |||
37 | private function toString() { |
||
49 | |||
50 | public function __toString() { |
||
53 | |||
54 | private function makeAttributes() { |
||
66 | |||
67 | private function makeChildren() { |
||
81 | } |