Passed
Push — next ( bbb9c5...d20d04 )
by Bas
07:19 queued 03:59
created

DatabaseSeeder   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A run() 0 8 1
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