From bca02ced8601b679354e6a64b8cc31c9b9058eaa Mon Sep 17 00:00:00 2001 From: MartinOscar <40749467+rmartinoscar@users.noreply.github.com> Date: Sat, 29 Mar 2025 19:58:36 +0100 Subject: [PATCH] Fix typo for `SESSION_DRIVER` in `RedisSetupCommand` (#1188) --- app/Console/Commands/Environment/RedisSetupCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/Environment/RedisSetupCommand.php b/app/Console/Commands/Environment/RedisSetupCommand.php index f3acd50ef..39dbf2ad5 100644 --- a/app/Console/Commands/Environment/RedisSetupCommand.php +++ b/app/Console/Commands/Environment/RedisSetupCommand.php @@ -35,7 +35,7 @@ class RedisSetupCommand extends Command { $this->variables['CACHE_STORE'] = 'redis'; $this->variables['QUEUE_CONNECTION'] = 'redis'; - $this->variables['SESSION_DRIVERS'] = 'redis'; + $this->variables['SESSION_DRIVER'] = 'redis'; $this->requestRedisSettings();