Completed
Push — master ( 0dfd17...a38508 )
by Sherif
02:04
created

RolesDatabaseSeeder::run()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 6
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
namespace App\Modules\Roles\Database\Seeds;
4
5
use Illuminate\Database\Seeder;
6
7
class RolesDatabaseSeeder extends Seeder
8
{
9
    /**
10
     * Run the database seeds.
11
     *
12
     * @return void
13
     */
14
    public function run()
15
    {
16
        $this->call(ClearDataSeeder::class);
17
        $this->call(RolesTableSeeder::class);
18
        $this->call(AssignRelationsSeeder::class);
19
    }
20
}
21