| Total Complexity | 1 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class UserRolePermissions extends Model |
||
| 9 | { |
||
| 10 | use HasFactory; |
||
| 11 | |||
| 12 | protected $guarded = ['id', 'created_at', 'updated_at']; |
||
| 13 | protected $hidden = ['created_at', 'updated_at', 'id']; |
||
| 14 | |||
| 15 | /* |
||
| 16 | * User Role Permissions explain what a peprmission type id is for |
||
| 17 | */ |
||
| 18 | 146 | public function UserRolePermissionTypes() |
|
| 23 |