| Total Complexity | 2 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class Family extends Model |
||
| 10 | { |
||
| 11 | use TableCache; |
||
| 12 | protected $fillable = ['description', 'is_active', 'father_id', 'mother_id', 'type_id']; |
||
| 13 | |||
| 14 | protected $attributes = ['is_active' => false]; |
||
| 15 | |||
| 16 | protected $casts = ['is_active' => 'boolean']; |
||
| 17 | |||
| 18 | public function person() |
||
| 21 | |||
| 22 | } |
||
| 23 | |||
| 24 | public static function personList() |
||
| 31 |