Conditions | 2 |
Paths | 2 |
Total Lines | 6 |
Code Lines | 2 |
Lines | 0 |
Ratio | 0 % |
Tests | 1 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
28 | public function __invoke(ContainerInterface $container): MessageBusInterface |
||
29 | 2 | { |
|
30 | /** @var null|MessageBusInterface $fallbackBus */ |
||
31 | $fallbackBus = $container->has($this->fallbackBusName) ? $container->get($this->fallbackBusName) : null; |
||
32 | |||
33 | return new RoutableMessageBus($container, $fallbackBus); |
||
34 | } |
||
53 |