Total Complexity | 7 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
19 | final class SendersLocatorFactory |
||
20 | 5 | { |
|
21 | /** @var string */ |
||
22 | 5 | private $busName; |
|
23 | 5 | ||
24 | public function __construct(string $busName = 'messenger.bus.default') |
||
25 | 5 | { |
|
26 | $this->busName = $busName; |
||
27 | } |
||
28 | 5 | ||
29 | public function __invoke(ContainerInterface $container): SendersLocatorInterface |
||
43 | } |
||
44 | } |
||
45 |