| Total Complexity | 3 |
| Total Lines | 37 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | class RedisDependencyProvider extends AbstractDependencyProvider |
||
| 13 | { |
||
| 14 | public const REDIS_COMMAND_COLLECTION = 'redis.command.collection'; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @param \Xervice\Core\Business\Model\Dependency\DependencyContainerInterface $container |
||
| 18 | * |
||
| 19 | * @return \Xervice\Core\Business\Model\Dependency\DependencyContainerInterface |
||
| 20 | */ |
||
| 21 | 1 | public function handleDependencies(DependencyContainerInterface $container): DependencyContainerInterface |
|
| 26 | } |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @return \Xervice\Redis\Business\Model\Commands\CommandProviderInterface[] |
||
| 30 | */ |
||
| 31 | 1 | protected function getCommands(): array |
|
| 32 | { |
||
| 33 | 1 | return []; |
|
| 34 | } |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @param \Xervice\Core\Business\Model\Dependency\DependencyContainerInterface $container |
||
| 38 | * |
||
| 39 | * @return \Xervice\Core\Business\Model\Dependency\DependencyContainerInterface |
||
| 40 | */ |
||
| 41 | 1 | protected function addCommandCollection(DependencyContainerInterface $container |
|
| 49 | } |
||
| 50 | } |
||
| 51 |