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)
|
foreach($settings as $keyname => $value)
|
||||||
{
|
{
|
||||||
$this->callSilent('environment:modify', [
|
$this->callSilent('environment:modify ' . $keyname . ' ' . $value);
|
||||||
'key' => $keyname,
|
|
||||||
'value' => $value
|
|
||||||
]);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->info('>> Saved configuration settings!');
|
$this->info('>> Saved configuration settings!');
|
||||||
|
|
Loading…
Reference in New Issue