Conditions | 3 |
Paths | 3 |
Total Lines | 14 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
32 | public function execute(array $scripts): array |
||
33 | { |
||
34 | foreach ($scripts as &$script) { |
||
35 | try { |
||
36 | $script = Minifier::minify($script); |
||
37 | } catch (\Exception $exception) { |
||
38 | // Remove comments |
||
39 | $script = preg_replace("/[^:']\/\/.*/", '', $script); |
||
40 | } |
||
41 | |||
42 | $script = preg_replace('!\s+!', ' ', $script); |
||
43 | } |
||
44 | |||
45 | return $scripts; |
||
46 | } |
||
47 | } |