| Total Complexity | 3 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | final class Redis implements RedisClientInterface |
||
| 10 | { |
||
| 11 | private $redisClient; |
||
| 12 | |||
| 13 | public function __construct(RedisClient $redisClient) |
||
| 14 | { |
||
| 15 | $this->redisClient = $redisClient; |
||
| 16 | } |
||
| 17 | |||
| 18 | public function getClient() : RedisClient |
||
| 21 | } |
||
| 22 | |||
| 23 | public function rawCommand(string $command, array $arguments) |
||
| 28 |