| Total Complexity | 3 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | class Tycoon extends BaseModel |
||
| 8 | { |
||
| 9 | protected $table = 'tycoons'; |
||
| 10 | |||
| 11 | protected $fillable = [ 'user_id', 'name', 'cash' ]; |
||
| 12 | |||
| 13 | protected $dates = [ 'created_at', 'updated_at' ]; |
||
| 14 | |||
| 15 | public function worlds() |
||
| 18 | } |
||
| 19 | |||
| 20 | public function worldTycoon() |
||
| 23 | } |
||
| 24 | |||
| 25 | public function scopeInitial($query, $initial) |
||
| 28 | } |
||
| 29 | } |