| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | public function register(Container $container) |
||
| 16 | { |
||
| 17 | 1 | $container['translator.providers'] = function () { |
|
| 18 | 1 | return []; |
|
| 19 | }; |
||
| 20 | |||
| 21 | 1 | $container['translator'] = function () use ($container) { |
|
| 22 | 1 | return new Translator($container['translator.providers'], $container['logger'] ?? null); |
|
| 23 | }; |
||
| 24 | 1 | } |
|
| 25 | } |
||
| 26 |