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