Completed
Push — master ( 52970f...c6d773 )
by Tristan
24:57 queued 10:40
created

UsersSeeder::run()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

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