improve key generation.

This commit is contained in:
Taylor Otwell 2012-01-27 10:43:45 -06:00
parent 59df5f3c6d
commit b9f6d162e6
2 changed files with 5 additions and 3 deletions

View File

@ -45,7 +45,7 @@
'host' => 'localhost', 'host' => 'localhost',
'database' => 'database', 'database' => 'database',
'username' => 'root', 'username' => 'root',
'password' => 'password', 'password' => '',
'charset' => 'utf8', 'charset' => 'utf8',
), ),
@ -54,7 +54,7 @@
'host' => 'localhost', 'host' => 'localhost',
'database' => 'database', 'database' => 'database',
'username' => 'root', 'username' => 'root',
'password' => 'password', 'password' => '',
'charset' => 'utf8', 'charset' => 'utf8',
), ),
@ -63,7 +63,7 @@
'host' => 'localhost', 'host' => 'localhost',
'database' => 'database', 'database' => 'database',
'username' => 'root', 'username' => 'root',
'password' => 'password', 'password' => '',
), ),
), ),

View File

@ -48,6 +48,8 @@ public function generate($arguments = array())
{ {
echo "An application key already exists!"; echo "An application key already exists!";
} }
echo PHP_EOL;
} }
} }