Total Complexity | 1 |
Total Lines | 11 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class UserPermissions extends Model |
||
8 | { |
||
9 | protected $fillable = [ |
||
10 | 'user_id', 'manage_users', 'run_reports', 'add_customer', 'deactivate_customer', 'use_file_links', 'create_tech_tip', 'edit_tech_tip', 'delete_tech_tip', 'create_category', 'modify_category' |
||
11 | ]; |
||
12 | |||
13 | protected $primaryKey = 'user_id'; |
||
14 | |||
15 | 2 | public function User() |
|
20 |