Skip to content
This repository has been archived by the owner on Sep 20, 2021. It is now read-only.

Commit

Permalink
Merge pull request #32 from Chronyms/analysis-86DQwM
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
Chronyms committed Feb 24, 2018
2 parents f5f486e + 76e8208 commit 052c035
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions database/seeds/UsersTableSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ public function run()
if ($user === null) {
$user = User::create([
'scoutname' => $faker->userName,
'first_name' => $faker->firstName,
'last_name' => $faker->lastName,
'first_name' => $faker->firstName,
'last_name' => $faker->lastName,
'email' => $seededAdminEmail,
'password' => Hash::make('password'),
'token' => str_random(64),
Expand All @@ -46,8 +46,8 @@ public function run()
if ($user === null) {
$user = User::create([
'scoutname' => $faker->userName,
'first_name' => $faker->firstName,
'last_name' => $faker->lastName,
'first_name' => $faker->firstName,
'last_name' => $faker->lastName,
'email' => '[email protected]',
'password' => Hash::make('password'),
'token' => str_random(64),
Expand Down

0 comments on commit 052c035

Please sign in to comment.