Total Complexity | 4 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | class PostProcessHtml extends AbstractPostProcess |
||
18 | { |
||
19 | /** |
||
20 | * {@inheritdoc} |
||
21 | */ |
||
22 | public function init($options) |
||
23 | { |
||
24 | $this->type = 'html'; |
||
25 | parent::init($options); |
||
26 | } |
||
27 | |||
28 | /** |
||
29 | * {@inheritdoc} |
||
30 | */ |
||
31 | public function setProcessor() |
||
32 | { |
||
33 | $this->type = 'html'; |
||
34 | $this->processor = new HtmlMin(); |
||
35 | } |
||
36 | |||
37 | /** |
||
38 | * {@inheritdoc} |
||
39 | */ |
||
40 | public function processFile() |
||
51 | } |
||
52 | } |
||
53 |