Fix typo for SESSION_DRIVER in RedisSetupCommand (#1188)

This commit is contained in:
MartinOscar 2025-03-29 19:58:36 +01:00 committed by GitHub
parent a768fadaea
commit bca02ced86
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -35,7 +35,7 @@ class RedisSetupCommand extends Command
{ {
$this->variables['CACHE_STORE'] = 'redis'; $this->variables['CACHE_STORE'] = 'redis';
$this->variables['QUEUE_CONNECTION'] = 'redis'; $this->variables['QUEUE_CONNECTION'] = 'redis';
$this->variables['SESSION_DRIVERS'] = 'redis'; $this->variables['SESSION_DRIVER'] = 'redis';
$this->requestRedisSettings(); $this->requestRedisSettings();