diff --git a/app/Console/Commands/Install.php b/app/Console/Commands/Install.php index fb84bf5..aeac485 100644 --- a/app/Console/Commands/Install.php +++ b/app/Console/Commands/Install.php @@ -110,10 +110,7 @@ class Install extends Command foreach($settings as $keyname => $value) { - $this->callSilent('environment:modify', [ - 'key' => $keyname, - 'value' => $value - ]); + $this->callSilent('environment:modify ' . $keyname . ' ' . $value); } $this->info('>> Saved configuration settings!');