| Total Complexity | 3 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | class TeamResult extends Model |
||
| 8 | { |
||
| 9 | protected $fillable = array('schedule_id', 'match_id', 'team_id', 'points', 'win', 'loss', 'tie'); |
||
| 10 | |||
| 11 | public function schedule() { |
||
| 13 | } |
||
| 14 | |||
| 15 | public function match() { |
||
| 16 | return $this->belongsTo('App\PLMatch'); |
||
| 17 | } |
||
| 18 | |||
| 19 | public function team() { |
||
| 21 | } |
||
| 22 | } |
||
| 23 |