Further simplify settings save call

This commit is contained in:
Miguel Nogueira 2020-07-09 06:27:21 +01:00
parent cb2b45b55f
commit 173dc57aa7
1 changed files with 4 additions and 1 deletions

View File

@ -110,7 +110,10 @@ class Install extends Command
foreach($settings as $keyname => $value)
{
$this->callSilent('environment:modify ' . $keyname . ' ' . $value);
$this->callSilent('environment:modify', [
$keyname,
$value
]);
}
$this->info('>> Saved configuration settings!');