use Symfony\Component\Semaphore\Store\RedisStore;
/**
* @author Jérémy Derussé <
[email protected]>
*/
abstract class AbstractRedisStoreTestCase extends AbstractStoreTestCase
{ abstract protected function getRedisConnection(): \Redis|Relay|\RedisArray|\RedisCluster|\Predis\ClientInterface;
public function getStore(): PersistingStoreInterface
{ return new RedisStore($this->
getRedisConnection());
}}