Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 2 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
20 | 3 | public function process(ContainerBuilder $container) |
|
21 | { |
||
22 | /** @var Glob $glob */ |
||
23 | 3 | $glob = $container->get('Glob'); |
|
24 | |||
25 | 3 | $locales = $glob->execGlob(ROOT . 'lang/*.po'); |
|
26 | 3 | $locales = array_map(function ($file) { |
|
27 | 1 | return basename($file, '.po'); |
|
28 | 3 | }, $locales); |
|
29 | |||
30 | 3 | $container->setParameter('locales', $locales); |
|
31 | 3 | } |
|
32 | } |
||
33 |