Conditions | 2 |
Paths | 2 |
Total Lines | 6 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 1 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
17 | public function __invoke(ContainerInterface $container): SetupTransportsCommand |
||
18 | 1 | { |
|
19 | $config = $container->has('config') ? $container->get('config') : []; |
||
20 | $transportNames = array_keys($config['messenger']['transports'] ?? []); |
||
21 | |||
22 | return new SetupTransportsCommand($container, $transportNames); |
||
23 | } |
||
25 |