From b4b273fc43a0e1a6d6b5bc128b42fe0f093735f1 Mon Sep 17 00:00:00 2001 From: snipe Date: Tue, 28 Apr 2015 16:42:08 -0700 Subject: [PATCH] Fixed typo --- app/commands/AppCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/commands/AppCommand.php b/app/commands/AppCommand.php index 52e3dd524c1e..10fa5162c36f 100755 --- a/app/commands/AppCommand.php +++ b/app/commands/AppCommand.php @@ -217,7 +217,7 @@ protected function askUserPassword() protected function askUserDummyData() { // Ask the user to input the user password - $dummydata = $this->ask('Do you want to seed your database with dummy data? (deafult is yes): '); + $dummydata = $this->ask('Do you want to seed your database with dummy data? y/n (default is yes): '); $this->dummyData = ( strstr($dummydata, 'y' ) || empty($dummydata) ) ? true : false; }