| Total Complexity | 3 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class CharacteristicsModel extends Model |
||
| 12 | { |
||
| 13 | protected $table = 'characteristics'; |
||
| 14 | |||
| 15 | protected $fillable = [ |
||
| 16 | 'uuid', |
||
| 17 | 'main', |
||
| 18 | 'priority', |
||
| 19 | 'icon', |
||
| 20 | 'page_label', |
||
| 21 | 'pretty_page_label', |
||
| 22 | 'page_id', |
||
| 23 | 'type', |
||
| 24 | 'code', |
||
| 25 | ]; |
||
| 26 | |||
| 27 | public function users() |
||
| 31 | } |
||
| 32 | |||
| 33 | public function toDto() |
||
| 48 |