| Total Complexity | 1 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class UserSetting extends Model |
||
| 9 | { |
||
| 10 | use HasFactory; |
||
| 11 | |||
| 12 | protected $primaryKey = 'setting_id'; |
||
| 13 | protected $guarded = ['setting_id', 'created_at', 'updated_at']; |
||
| 14 | protected $hidden = ['setting_id', 'user_id', 'created_at', 'updated_at']; |
||
| 15 | protected $casts = [ |
||
| 16 | 'value' => 'boolean', |
||
| 17 | ]; |
||
| 18 | |||
| 19 | public function UserSettingType() |
||
| 24 |