Simplify settings save call
This commit is contained in:
parent
a3e727f1f1
commit
cb2b45b55f
|
@ -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!');
|
||||
|
|
Loading…
Reference in New Issue