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 | 34 |
Code Lines | 21 |
Lines | 0 |
Ratio | 0 % |
Changes | 5 | ||
Bugs | 1 | Features | 2 |
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 | ]]); |
||
39 | |||
40 | DB::table('planets')->insert([[ |
||
41 | 'title' => $faker->title, |
||
42 | ], [ |
||
43 | 'title' => $faker->title, |
||
44 | ]]); |
||
45 | |||
46 | DB::table('comets')->insert([['user_id' => ''], ['user_id' => '']]); |
||
47 | |||
48 | DB::table('bangs')->insert([['name' => 'bang1'], ['name' => 'bang2']]); |
||
49 | } |
||
51 |