1 | <?php |
||
10 | final class HtmlBuilder |
||
11 | { |
||
12 | /** |
||
13 | * @var \drupol\htmltag\Tag\TagInterface |
||
14 | */ |
||
15 | private $currenttag; |
||
16 | |||
17 | /** |
||
18 | * @var \drupol\htmltag\Tag\TagInterface[] |
||
19 | */ |
||
20 | private $storage; |
||
21 | |||
22 | /** |
||
23 | * @param $name |
||
24 | * @param $arguments |
||
25 | * |
||
26 | * @return $this |
||
27 | */ |
||
28 | public function __call($name, $arguments) { |
||
45 | |||
46 | /** |
||
47 | * @return string |
||
48 | */ |
||
49 | public function __toString() { |
||
58 | } |
||
59 |