1
0
mirror of https://github.com/devfake/flox.git synced 2024-11-15 06:32:34 +01:00

make questions optional on flox:init

This commit is contained in:
devfake 2017-02-08 11:47:06 +01:00 committed by Tim Meier
parent c11cf7e711
commit 30d5e21af2

View File

@ -39,7 +39,7 @@
{
foreach($this->requests as $type => $text) {
if( ! env($type)) {
$value = $this->ask('Enter your Database ' . $text);
$value = $this->ask('Enter your Database ' . $text, false);
$this->changeENV($type, $value);
}
}