| Total Complexity | 3 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 5 | class RedisMultiWrapper |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @param array<mixed> $results |
||
| 9 | */ |
||
| 10 | public function __construct(private readonly \Redis $redis, private array $results = []) |
||
| 12 | } |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @param array<mixed> $arguments |
||
| 16 | * |
||
| 17 | * @return RedisMultiWrapper |
||
| 18 | */ |
||
| 19 | public function __call(string $name, array $arguments) |
||
| 25 | } |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @return mixed[] |
||
| 29 | */ |
||
| 30 | public function exec(): array |
||
| 38 |