| 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\Backups\Seeds; |
||
| 21 | public function run() |
||
| 22 | { |
||
| 23 | $this->seed([ |
||
| 24 | [ |
||
| 25 | 'name' => 'Backups Manager', |
||
| 26 | 'description' => 'The Backups manager role.', |
||
| 27 | 'is_locked' => true, |
||
| 28 | ], |
||
| 29 | ]); |
||
| 30 | |||
| 31 | $this->syncAdminRole(); |
||
| 32 | $this->syncRoles([ |
||
| 33 | 'backups-manager' => 'backups.', |
||
| 34 | ]); |
||
| 35 | } |
||
| 36 | } |
||
| 37 |