Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php namespace Arcanesoft\Seo\Seeds; |
||
21 | public function run() |
||
22 | { |
||
23 | $this->seed([ |
||
24 | [ |
||
25 | 'name' => 'SEO Moderators', |
||
26 | 'description' => 'The SEO moderators role.', |
||
27 | 'is_locked' => true, |
||
28 | ], |
||
29 | ]); |
||
30 | |||
31 | $this->syncAdminRole(); |
||
32 | $this->syncRoles([ |
||
33 | 'seo-moderators' => 'seo.', |
||
34 | ]); |
||
35 | } |
||
36 | } |
||
37 |