Completed
Push — master ( adb5f1...9300e7 )
by Nasrul Hazim
01:47
created

OpenPayrollSeeder   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 3
dl 0
loc 10
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A run() 0 3 1
1
<?php
2
3
use CleaniqueCoders\OpenPayroll\Traits\ReferenceTrait;
4
use Illuminate\Database\Seeder;
5
6
class OpenPayrollSeeder extends Seeder
7
{
8
    use ReferenceTrait;
9
10
    /**
11
     * Run the database seeds.
12
     */
13
    public function run()
14
    {
15
        $this->seedReferences();
16
    }
17
}
18