| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | public function build(ContainerBuilder $container): void |
||
| 19 | { |
||
| 20 | $container->register('zenstruck_messenger_test.transport_factory', TestTransportFactory::class) |
||
| 21 | ->setArguments([new Reference('messenger.routable_message_bus'), new Reference('event_dispatcher')]) |
||
| 22 | ->addTag('messenger.transport_factory') |
||
| 23 | ; |
||
| 24 | |||
| 25 | $container->register('zenstruck_messenger_test.transport_registry', TestTransportRegistry::class) |
||
| 26 | ->setPublic(true) |
||
| 27 | ; |
||
| 28 | |||
| 29 | $container->addCompilerPass($this); |
||
| 30 | } |
||
| 54 |