DatabaseSeeder::run()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 7
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 5
nc 1
nop 0
dl 0
loc 7
rs 9.4285
c 0
b 0
f 0
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