Skip to content

Commit

Permalink
Backport the better faker default
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamCampbell committed Apr 5, 2016
1 parent 2c44698 commit 3a2cfbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion database/factories/ModelFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
$factory->define(App\User::class, function (Faker\Generator $faker) {
return [
'name' => $faker->name,
'email' => $faker->email,
'email' => $faker->safeEmail,
'password' => bcrypt(str_random(10)),
'remember_token' => str_random(10),
];
Expand Down

0 comments on commit 3a2cfbc

Please sign in to comment.