RolesTableSeeder::run()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 21
Code Lines 12

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 21
ccs 0
cts 20
cp 0
rs 9.3142
cc 1
eloc 12
nc 1
nop 0
crap 2
1
<?php namespace Arcanesoft\Blog\Seeds;
2
3
use Arcanesoft\Auth\Seeds\RolesSeeder;
4
5
/**
6
 * Class     RolesTableSeeder
7
 *
8
 * @package  Arcanesoft\Blog\Seeds
9
 * @author   ARCANEDEV <[email protected]>
10
 */
11
class RolesTableSeeder extends RolesSeeder
12
{
13
    /* -----------------------------------------------------------------
14
     |  Main Methods
15
     | -----------------------------------------------------------------
16
     */
17
18
    /**
19
     * Run the database seeds.
20
     */
21
    public function run()
22
    {
23
        $this->seed([
24
            [
25
                'name'        => 'Blog Moderators',
26
                'description' => 'The Blog moderators role.',
27
                'is_locked'   => true,
28
            ],
29
            [
30
                'name'        => 'Blog Authors',
31
                'description' => 'The Blog authors role.',
32
                'is_locked'   => true,
33
            ],
34
        ]);
35
36
        $this->syncAdminRole();
37
        $this->syncRoles([
38
            'blog-moderators' => 'blog.',
39
            'blog-authors'    => 'blog.posts.',
40
        ]);
41
    }
42
}
43