Skip to content

Commit

Permalink
Remove display of default options, now displayed by laravel
Browse files Browse the repository at this point in the history
  • Loading branch information
nWidart committed Jun 10, 2015
1 parent 9c387f4 commit 15f2cfe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Console/Installers/Scripts/ConfigureDatabase.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public function fire(Command $command)
*/
protected function askDatabaseHost()
{
$host = $this->command->ask('Enter your database host [localhost]: ', 'localhost');
$host = $this->command->ask('Enter your database host: ', 'localhost');

return $host;
}
Expand All @@ -72,7 +72,7 @@ protected function askDatabaseHost()
protected function askDatabaseName()
{
do {
$name = $this->command->ask('Enter your database name []: ');
$name = $this->command->ask('Enter your database name: ');
if ($name == '') {
$this->command->error('Database name is required');
}
Expand All @@ -88,7 +88,7 @@ protected function askDatabaseName()
protected function askDatabaseUsername()
{
do {
$user = $this->command->ask('Enter your database username [root]: ', 'root');
$user = $this->command->ask('Enter your database username: ', 'root');
if ($user == '') {
$this->command->error('Database username is required');
}
Expand All @@ -103,7 +103,7 @@ protected function askDatabaseUsername()
*/
protected function askDatabasePassword()
{
return $this->command->secret('Enter your database password []: ');
return $this->command->secret('Enter your database password: ');
}

/**
Expand Down

0 comments on commit 15f2cfe

Please sign in to comment.