| Total Complexity | 3 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Coverage | 85.71% |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class Provider implements ProviderInterface |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var \Xervice\Redis\Business\Model\Commands\Collection |
||
| 13 | */ |
||
| 14 | private $commandCollection; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var \Predis\Client |
||
| 18 | */ |
||
| 19 | private $client; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * Provider constructor. |
||
| 23 | * |
||
| 24 | * @param \Xervice\Redis\Business\Model\Commands\Collection $commandCollection |
||
| 25 | * @param \Predis\Client $client |
||
| 26 | */ |
||
| 27 | 8 | public function __construct(Collection $commandCollection, Client $client) |
|
| 31 | 8 | } |
|
| 32 | |||
| 33 | |||
| 34 | 8 | public function provideCommands(): void |
|
| 41 |