| 1 | <?php |
||
| 8 | class MinifyHtmlNode extends Node |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * MinifyHtmlNode constructor. |
||
| 12 | * |
||
| 13 | * @param array $nodes |
||
| 14 | * @param array $attributes |
||
| 15 | * @param int $lineno |
||
| 16 | * @param null $tag |
||
| 17 | */ |
||
| 18 | 2 | public function __construct(array $nodes = [], array $attributes = [], $lineno = 0, $tag = null) |
|
| 22 | |||
| 23 | /** |
||
| 24 | * @param Compiler $compiler |
||
| 25 | */ |
||
| 26 | 2 | public function compile(Compiler $compiler) |
|
| 35 | } |
||
| 36 |