Cache configuration file when editing environment or mail settings.

This commit is contained in:
Dane Everitt 2017-02-02 15:06:35 -05:00
parent e18391e98a
commit 6220f710df
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
2 changed files with 6 additions and 0 deletions

View file

@ -155,6 +155,9 @@ class UpdateEmailSettings extends Command
file_put_contents($file, $envContents);
$bar->finish();
$this->line('Updating evironment configuration cache file.');
$this->call('config:cache');
echo "\n";
}
}

View file

@ -150,6 +150,9 @@ class UpdateEnvironment extends Command
file_put_contents($file, $envContents);
$bar->finish();
$this->line('Updating evironment configuration cache file.');
$this->call('config:cache');
echo "\n";
}
}