Passed
Pull Request — next (#137)
by Bas
04:08
created

DatabaseSeeder::run()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 8
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 6
c 0
b 0
f 0
nc 1
nop 0
dl 0
loc 8
rs 10
1
<?php
2
3
namespace Database\Seeders;
4
5
use Illuminate\Database\Seeder;
6
7
class DatabaseSeeder extends Seeder
8
{
9
    /**
10
     * Seed the application's test database.
11
     *
12
     * @return void
13
     */
14
    public function run()
15
    {
16
        $this->call(CharactersSeeder::class);
17
        $this->call(ChildrenSeeder::class);
18
        $this->call(LocationsSeeder::class);
19
        $this->call(TagsSeeder::class);
20
        $this->call(TaggablesSeeder::class);
21
        $this->call(HousesSeeder::class);
22
    }
23
}
24