| Total Complexity | 4 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | final class RedisCache implements Cache |
||
| 16 | { |
||
| 17 | public const DEFAULT_PREFIX = 'icanboogie-cldr-'; |
||
| 18 | |||
| 19 | public function __construct( |
||
| 20 | private readonly RedisCluster|Redis $redis, |
||
| 21 | private readonly string $prefix = self::DEFAULT_PREFIX |
||
| 22 | ) { |
||
| 23 | } |
||
| 24 | |||
| 25 | public function get(string $path): ?array |
||
| 34 | } |
||
| 35 | |||
| 36 | public function set(string $path, array $data): void |
||
| 41 |