This commit is contained in:
ghermans 2020-02-25 03:46:39 +01:00
parent b9a6d2e6e9
commit 5465963e9a
1 changed files with 2 additions and 2 deletions

View File

@ -99,10 +99,10 @@ class install extends Command
$this->envUpdate('APP_LOCALE=', $locale);
$TimeZones = timezone_identifiers_list();
$timezone = $this->anticipate('Enter the default timezone', $TimeZones, date_default_timezone_get());
$timezone = $this->anticipate('Please enter the default timezone', $TimeZones, date_default_timezone_get());
$this->envUpdate('APP_TIMEZONE=', $timezone);
$currency = $this->choice('Enter the default currency', ['USD', 'EUR'], 'USD');
$currency = $this->choice('Please enter the default currency', ['USD', 'EUR'], 'USD');
$this->envUpdate('APP_CURRENCY=', $currency);