Total Complexity | 3 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 1 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
17 | class Autoprefixer extends PadaliyajayAutoprefixer |
||
18 | { |
||
19 | /** |
||
20 | * @var Parser |
||
21 | */ |
||
22 | private $cssParser; |
||
23 | |||
24 | public function __construct(string $cssCode) |
||
25 | { |
||
26 | $this->cssParser = new Parser($cssCode); |
||
27 | } |
||
28 | |||
29 | public function compile(bool $prettyOutput = true): string |
||
40 | } |
||
41 | } |
||
42 |