Total Complexity | 3 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class ResultSubmission extends Model |
||
8 | { |
||
9 | |||
10 | protected $fillable = array('match_id', 'home_team_score', 'away_team_score', 'win_team_id', 'approved'); |
||
11 | |||
12 | public function association() { |
||
13 | return $this->belongsTo('App\Association'); |
||
14 | } |
||
15 | |||
16 | public function schedule() { |
||
18 | } |
||
19 | |||
20 | public function match() { |
||
25 |