ResultSubmission   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 6
c 1
b 0
f 0
dl 0
loc 15
rs 10
wmc 3

3 Methods

Rating   Name   Duplication   Size   Complexity  
A schedule() 0 2 1
A association() 0 2 1
A match() 0 2 1
1
<?php
2
3
namespace App;
4
5
use Illuminate\Database\Eloquent\Model;
6
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() {
17
        return $this->belongsTo('App\Schedule');
18
    }
19
20
    public function match() {
21
        return $this->belongsTo('App\PLMatch');
22
    }
23
24
}
25