Test Failed
Push — dev5 ( 12da53...ea9e9d )
by Ron
07:49
created

TechTipsSeeder::run()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 4
rs 10
1
<?php
2
3
use Illuminate\Database\Seeder;
4
5
class TechTipsSeeder extends Seeder
6
{
7
    /**
8
     * Run the database seeds.
9
     *
10
     * @return void
11
     */
12
    public function run()
13
    {
14
        //  Create 20 random tech tips
15
        factory(App\TechTips::class, 20)->create();
16
    }
17
}
18