| Total Complexity | 7 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | final class SendersLocatorFactory |
||
| 16 | { |
||
| 17 | /** @var string */ |
||
| 18 | private $busName; |
||
| 19 | |||
| 20 | 5 | public function __construct(string $busName = 'messenger.bus.default') |
|
| 21 | { |
||
| 22 | 5 | $this->busName = $busName; |
|
| 23 | 5 | } |
|
| 24 | |||
| 25 | 5 | public function __invoke(ContainerInterface $container): SendersLocatorInterface |
|
| 39 | } |
||
| 40 | } |
||
| 41 |