Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 2.1481 |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
35 | 1 | public function init(array $options): void |
|
36 | { |
||
37 | 1 | $this->type = 'html'; |
|
38 | // https://github.com/voku/HtmlMin/issues/93 |
||
39 | 1 | if (version_compare(PHP_VERSION, '8.3.0', '>=')) { |
|
40 | $this->builder->getLogger()->debug("{$this->getName()} is disabled for PHP 8.3"); |
||
41 | |||
42 | return; |
||
43 | } |
||
44 | 1 | parent::init($options); |
|
45 | } |
||
81 |