We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| Conditions | 1 |
| Paths | 1 |
| Total Lines | 23 |
| Code Lines | 16 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 1 | Features | 1 |
| 1 | <?php |
||
| 15 | public function run() |
||
| 16 | { |
||
| 17 | $faker = \Faker\Factory::create(); |
||
| 18 | $now = \Carbon\Carbon::now(); |
||
| 19 | |||
| 20 | DB::table('recommends')->insert([[ |
||
| 21 | 'title' => $faker->title, |
||
| 22 | 'created_at' => $now, |
||
| 23 | 'updated_at' => $now, |
||
| 24 | ], [ |
||
| 25 | 'title' => $faker->title, |
||
| 26 | 'created_at' => $now, |
||
| 27 | 'updated_at' => $now, |
||
| 28 | ]]); |
||
| 29 | |||
| 30 | DB::table('bills')->insert([[ |
||
| 31 | 'title' => $faker->title, |
||
| 32 | 'created_at' => $now, |
||
| 33 | 'updated_at' => $now, |
||
| 34 | ], [ |
||
| 35 | 'title' => $faker->title, |
||
| 36 | 'created_at' => $now, |
||
| 37 | 'updated_at' => $now, |
||
| 38 | ]]); |
||
| 41 |