Skip to content

Commit

Permalink
Apply fixes from StyleCI (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
xoco70 committed Oct 10, 2018
1 parent 738add8 commit 404e3d1
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions database/factories/UserFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,13 @@


$factory->define(\App\User::class, function (Faker\Generator $faker) {

return [
'name' => $faker->name,
'email' => $faker->unique()->safeEmail,
'email_verified_at' => now(),
'password' => '$2y$10$TKh8H1.PfQx37YgCzwiKb.KjNyWgaHb9cbcoQgdIVFlYg7B77UdFm', // secret
'remember_token' => str_random(10),
'name' => $faker->name,
'email' => $faker->unique()->safeEmail,
'email_verified_at' => now(),
'password' => '$2y$10$TKh8H1.PfQx37YgCzwiKb.KjNyWgaHb9cbcoQgdIVFlYg7B77UdFm', // secret
'remember_token' => str_random(10),
'firstname' => $faker->firstname,
'lastname' => $faker->lastName,
'lastname' => $faker->lastName,
];
});

0 comments on commit 404e3d1

Please sign in to comment.