| Conditions | 1 |
| Paths | 1 |
| Total Lines | 17 |
| Code Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | public function seedUsers() |
||
| 15 | { |
||
| 16 | $now = \Carbon\Carbon::now(); |
||
| 17 | \DB::table('users')->insert([ |
||
| 18 | 'name' => 'PHPUnit', |
||
| 19 | 'email' => '[email protected]', |
||
| 20 | 'password' => \Hash::make('456'), |
||
| 21 | 'created_at' => $now, |
||
| 22 | 'updated_at' => $now, |
||
| 23 | ]); |
||
| 24 | |||
| 25 | \DB::table('users')->insert([ |
||
| 26 | 'name' => 'PHPUnit', |
||
| 27 | 'email' => '[email protected]', |
||
| 28 | 'password' => \Hash::make('456'), |
||
| 29 | 'created_at' => $now, |
||
| 30 | 'updated_at' => $now, |
||
| 31 | ]); |
||
| 61 |