Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 2 |
CRAP Score | 1.125 |
Changes | 0 |
1 | <?php |
||
16 | 1 | public function handleDependencies(DependencyContainerInterface $container): DependencyContainerInterface |
|
17 | { |
||
18 | $container[self::RABBITMQ_FACADE] = function (DependencyContainerInterface $container) { |
||
19 | return $container->getLocator()->rabbitMQ()->facade(); |
||
|
|||
20 | }; |
||
21 | |||
22 | $container[self::EVENT_FACADE] = function (DependencyContainerInterface $container) { |
||
23 | return $container->getLocator()->event()->facade(); |
||
24 | }; |
||
25 | |||
26 | 1 | return $container; |
|
27 | } |
||
28 | } |