| Total Complexity | 1 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | class FamilySlgs extends Model |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * The "type" of the auto-incrementing ID. |
||
| 21 | * |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | protected $keyType = 'integer'; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @var array |
||
| 28 | */ |
||
| 29 | protected $fillable = ['family_id', 'stat', 'date', 'plac', 'temp', 'created_at', 'updated_at']; |
||
| 30 | |||
| 31 | public function family() |
||
| 36 |