| Total Complexity | 2 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | class House extends Model |
||
| 8 | { |
||
| 9 | protected $table = 'houses'; |
||
| 10 | |||
| 11 | protected $fillable = [ |
||
| 12 | 'id', |
||
| 13 | 'name', |
||
| 14 | 'location_id', |
||
| 15 | ]; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Get the last known residence of the character. |
||
| 19 | */ |
||
| 20 | public function head() |
||
| 23 | } |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Get all of the tags for the post. |
||
| 27 | */ |
||
| 28 | public function tags() |
||
| 34 |