We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a501d4 commit 9d7e814Copy full SHA for 9d7e814
Tests/Store/StoreFactoryTest.php
@@ -60,7 +60,7 @@ public function validConnections()
60
yield ['memcached://server.com', MemcachedStore::class];
61
yield ['memcached:?host[localhost]&host[localhost:12345]', MemcachedStore::class];
62
}
63
- if ((class_exists(\Redis::class) || class_exists(\Predis\Client::class)) && class_exists(AbstractAdapter::class)) {
+ if (class_exists(\Redis::class) && class_exists(AbstractAdapter::class)) {
64
yield ['redis://localhost', RedisStore::class];
65
yield ['redis://localhost?lazy=1', RedisStore::class];
66
yield ['redis://localhost?redis_cluster=1', RedisStore::class];
0 commit comments