From a48fe56e376132db308015637ca2e21a70837c3f Mon Sep 17 00:00:00 2001 From: ghermans Date: Tue, 25 Feb 2020 03:57:05 +0100 Subject: [PATCH] #2525 fixed typos --- app/Console/Commands/install.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app/Console/Commands/install.php b/app/Console/Commands/install.php index 487ef886c..f8fe1d7c6 100644 --- a/app/Console/Commands/install.php +++ b/app/Console/Commands/install.php @@ -78,10 +78,10 @@ class install extends Command { $envExists = File::exists(base_path() . '/.env'); if (!$envExists) { - $this->info('Creating .env file'); + $this->info('Creating the environment configuration file.'); $this->createEnvFile(); } else { - $this->info('Great! .env file aready exists'); + $this->info('Great! your environment configuration file aready exists.'); } } @@ -108,7 +108,7 @@ class install extends Command $this->addDatabaseDetails(); } catch (\Exception $e) { - $this->error('Error in creating .env file, please create it manually and then run `php artisan migrate` again'); + $this->error('Error in creating .env file, please create it manually and then run `php artisan migrate` again.'); } } @@ -117,9 +117,9 @@ class install extends Command */ public function addDatabaseDetails() { - $dbName = $this->ask('What is the database name to be used by bagisto'); - $dbUser = $this->anticipate('What is your database username', ['root']); - $dbPass = $this->secret('What is your database password'); + $dbName = $this->ask('What is the database name to be used by bagisto?'); + $dbUser = $this->anticipate('What is your database username?', ['root']); + $dbPass = $this->secret('What is your database password?'); $this->envUpdate('DB_DATABASE=', $dbName); $this->envUpdate('DB_USERNAME=', $dbUser);