From 7cead2635ac299d3012b8b900dd5585bdf1bfdea Mon Sep 17 00:00:00 2001 From: Dane Everitt Date: Fri, 14 Apr 2017 17:55:25 -0400 Subject: [PATCH] Spelling. --- app/Console/Commands/UpdateEnvironment.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Console/Commands/UpdateEnvironment.php b/app/Console/Commands/UpdateEnvironment.php index 35392d34c..d14901399 100644 --- a/app/Console/Commands/UpdateEnvironment.php +++ b/app/Console/Commands/UpdateEnvironment.php @@ -171,8 +171,8 @@ class UpdateEnvironment extends Command ]; $default = (in_array(config('queue.driver', 'database'), $options)) ? config('queue.driver', 'database') : 'database'; - $this->line('If you chose redis as your cache driver backend, you *must* have a redis server configured already.'); - $variables['QUEUE_DRIVER'] = $this->choice('Which cache driver backend would you like to use?', $options, $default); + $this->line('If you chose redis as your queue driver backend, you *must* have a redis server configured already.'); + $variables['QUEUE_DRIVER'] = $this->choice('Which queue driver backend would you like to use?', $options, $default); } else { $variables['QUEUE_DRIVER'] = $this->option('queue-driver'); }