Simplify settings save call

This commit is contained in:
Miguel Nogueira 2020-07-09 06:22:43 +01:00
parent a3e727f1f1
commit cb2b45b55f
1 changed files with 1 additions and 4 deletions

View File

@ -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!');