| Total Complexity | 3 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | class AssetsMinify extends AbstractStaticProcess |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * {@inheritdoc} |
||
| 20 | */ |
||
| 21 | public function init($options) |
||
| 22 | { |
||
| 23 | parent::init($options); |
||
| 24 | } |
||
| 25 | |||
| 26 | /** |
||
| 27 | * {@inheritdoc} |
||
| 28 | */ |
||
| 29 | public function setProcessor() |
||
| 30 | { |
||
| 31 | $this->type = 'html'; |
||
| 32 | $this->processor = new HtmlMin(); |
||
| 33 | } |
||
| 34 | |||
| 35 | /** |
||
| 36 | * {@inheritdoc} |
||
| 37 | */ |
||
| 38 | public function processFile(\Symfony\Component\Finder\SplFileInfo $file) |
||
| 43 | } |
||
| 44 | } |
||
| 45 |