From c3a6b16a132643766a6635151947ab06e9bcb191 Mon Sep 17 00:00:00 2001 From: Miguel Nogueira Date: Thu, 9 Jul 2020 08:50:54 +0100 Subject: [PATCH] Clear configuration cache before editing it --- app/Console/Commands/Install.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Console/Commands/Install.php b/app/Console/Commands/Install.php index 1f41b1a..80b0e85 100644 --- a/app/Console/Commands/Install.php +++ b/app/Console/Commands/Install.php @@ -79,6 +79,7 @@ class Install extends Command $this->info('>> Configuring application - We\'re going to ask a few questions here!'); do { + $this->call('config:clear'); $this->info('== Database Settings (1/6) =='); $settings['DB_USERNAME'] = $this->ask('Database username');