UsersModuleSeeder::run()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

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