| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php namespace Arcanesoft\Auth\Seeds\Foundation; |
||
| 21 | public function run() |
||
| 22 | { |
||
| 23 | $this->seed([ |
||
| 24 | [ |
||
| 25 | 'name' => 'Administrator', |
||
| 26 | 'description' => 'The system administrator role.', |
||
| 27 | 'is_active' => true, |
||
| 28 | 'is_locked' => true, |
||
| 29 | ],[ |
||
| 30 | 'name' => 'Member', |
||
| 31 | 'description' => 'The member role.', |
||
| 32 | 'is_active' => true, |
||
| 33 | 'is_locked' => true, |
||
| 34 | ] |
||
| 35 | ]); |
||
| 36 | } |
||
| 37 | |||
| 71 |