DashboardModuleSeeder::run()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 5
c 0
b 0
f 0
rs 9.4285
cc 1
eloc 3
nc 1
nop 0
1
<?php namespace Anomaly\DashboardModule;
2
3
use Anomaly\DashboardModule\Seeder\DashboardSeeder;
4
use Anomaly\DashboardModule\Seeder\WidgetSeeder;
5
use Anomaly\Streams\Platform\Database\Seeder\Seeder;
6
7
/**
8
 * Class DashboardModuleSeeder
9
 *
10
 * @link          http://pyrocms.com/
11
 * @author        PyroCMS, Inc. <[email protected]>
12
 * @author        Ryan Thompson <[email protected]>
13
 */
14
class DashboardModuleSeeder extends Seeder
15
{
16
17
    /**
18
     * Run the seeder.
19
     */
20
    public function run()
21
    {
22
        $this->call(DashboardSeeder::class);
23
        $this->call(WidgetSeeder::class);
24
    }
25
}
26