| Total Complexity | 4 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | final class RedisArrayThrottleTest extends BaseRedisThrottleTest |
||
| 12 | { |
||
| 13 | public static function setUpBeforeClass(): void |
||
| 14 | { |
||
| 15 | if (!\class_exists('RedisArray')) { |
||
| 16 | self::markTestSkipped('The RedisArray class is required.'); |
||
| 17 | } |
||
| 18 | |||
| 19 | if (!\getenv('REDIS_HOST')) { |
||
| 20 | self::markTestSkipped('REDIS_HOST not configured.'); |
||
| 21 | } |
||
| 22 | } |
||
| 23 | |||
| 24 | protected function createConnection(): object |
||
| 27 | } |
||
| 28 | } |
||
| 29 |