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.
2 parents e9176a1 + 6eca6ef commit b012aa0Copy full SHA for b012aa0
Store/StoreFactory.php
@@ -70,7 +70,7 @@ public static function createStore($connection)
70
case 0 === strpos($connection, 'rediss://'):
71
case 0 === strpos($connection, 'memcached://'):
72
if (!class_exists(AbstractAdapter::class)) {
73
- throw new InvalidArgumentException(sprintf('Unsupported DSN "%s". Try running "composer require symfony/cache".', $this->dsn));
+ throw new InvalidArgumentException(sprintf('Unsupported DSN "%s". Try running "composer require symfony/cache".', $connection));
74
}
75
$storeClass = 0 === strpos($connection, 'memcached://') ? MemcachedStore::class : RedisStore::class;
76
$connection = AbstractAdapter::createConnection($connection, ['lazy' => true]);
0 commit comments