| Total Complexity | 1 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 37 | class BoxesDef extends Model |
||
| 38 | { |
||
| 39 | public $timestamps = false; |
||
| 40 | protected $table = 'boxes_def'; |
||
| 41 | protected $casts = [ |
||
| 42 | 'entity' => 'int', |
||
| 43 | 'fk_user' => 'int', |
||
| 44 | 'tms' => 'datetime' |
||
| 45 | ]; |
||
| 46 | |||
| 47 | protected $fillable = [ |
||
| 48 | 'file', |
||
| 49 | 'entity', |
||
| 50 | 'fk_user', |
||
| 51 | 'tms', |
||
| 52 | 'note' |
||
| 53 | ]; |
||
| 54 | |||
| 55 | public function boxes() |
||
| 60 |