DatabaseSeeder   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 15
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A run() 0 7 1
1
<?php
2
3
namespace Larafolio\database\seeds;
4
5
use Illuminate\Database\Seeder;
6
7
class DatabaseSeeder extends Seeder
8
{
9
    /**
10
     * Run the database seeds.
11
     *
12
     * @return void
13
     */
14
    public function run()
15
    {
16
        $this->call(UsersTableSeeder::class);
17
        $this->call(ProjectsTableSeeder::class);
18
        $this->call(ImagesTableSeeder::class);
19
        $this->call(TextBlocksTableSeeder::class);
20
    }
21
}
22