-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Not enough diversity yet, but i might prove useful for testing request
- Loading branch information
Dominique Vilain
committed
Jun 30, 2017
1 parent
f1b4277
commit 951c670
Showing
8 changed files
with
157 additions
and
78 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,14 +58,14 @@ public function run() | |
'name' => 'Mariam Faso', | ||
'email' => '[email protected]', | ||
'password' => Hash::make('azerty'), | ||
'company' => '' | ||
'company' => null | ||
]); | ||
\Jiri\User::create([ | ||
'is_admin' => 0, | ||
'name' => 'Vincent De Oliveira', | ||
'email' => '[email protected]', | ||
'password' => Hash::make('azerty'), | ||
'company' => '' | ||
'company' => null | ||
]); | ||
\Jiri\User::create([ | ||
'is_admin' => 0, | ||
|
@@ -79,7 +79,7 @@ public function run() | |
'name' => 'Molly Holzschlag', | ||
'email' => '[email protected]', | ||
'password' => Hash::make('azerty'), | ||
'company' => '' | ||
'company' => null | ||
]); | ||
\Jiri\User::create([ | ||
'is_admin' => 0, | ||
|
@@ -93,7 +93,7 @@ public function run() | |
'name' => 'Taylor Otwell', | ||
'email' => '[email protected]', | ||
'password' => Hash::make('azerty'), | ||
'company' => '' | ||
'company' => null | ||
]); | ||
\Jiri\User::create([ | ||
'is_admin' => 0, | ||
|
@@ -116,5 +116,33 @@ public function run() | |
'password' => Hash::make('azerty'), | ||
'company' => 'CSIA' | ||
]); | ||
\Jiri\User::create([ | ||
'is_admin' => 0, | ||
'name' => 'Matt Stauffer', | ||
'email' => '[email protected]', | ||
'password' => Hash::make('azerty'), | ||
'company' => null | ||
]); | ||
\Jiri\User::create([ | ||
'is_admin' => 0, | ||
'name' => 'Jeffrey Zeldman', | ||
'email' => '[email protected]', | ||
'password' => Hash::make('azerty'), | ||
'company' => 'A list apart' | ||
]); | ||
\Jiri\User::create([ | ||
'is_admin' => 0, | ||
'name' => 'Jason Santa Maria', | ||
'email' => '[email protected]', | ||
'password' => Hash::make('azerty'), | ||
'company' => null | ||
]); | ||
\Jiri\User::create([ | ||
'is_admin' => 0, | ||
'name' => 'Jeremy Keith', | ||
'email' => '[email protected]', | ||
'password' => Hash::make('azerty'), | ||
'company' => 'clearleft' | ||
]); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters