| Conditions | 1 |
| Paths | 1 |
| Total Lines | 21 |
| Code Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php namespace Arcanesoft\Blog\Seeds; |
||
| 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 |