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