Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
41 | 1 | protected function addCommandCollection(DependencyContainerInterface $container |
|
42 | ): \Xervice\Core\Business\Model\Dependency\DependencyContainerInterface { |
||
43 | $container[self::REDIS_COMMAND_COLLECTION] = function () { |
||
44 | 1 | return new Collection( |
|
45 | 1 | $this->getCommands() |
|
46 | ); |
||
47 | }; |
||
48 | 1 | return $container; |
|
49 | } |
||
51 |