Team   A
last analyzed

Complexity

Total Complexity 4

Size/Duplication

Total Lines 19
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 6
dl 0
loc 19
rs 10
c 0
b 0
f 0
wmc 4

4 Methods

Rating   Name   Duplication   Size   Complexity  
A association() 0 2 1
A homeVenue() 0 2 1
A members() 0 2 1
A captains() 0 2 1
1
<?php
2
3
namespace App;
4
5
use Illuminate\Database\Eloquent\Model;
6
7
class Team extends Model
8
{
9
10
    protected $fillable = array('name', 'venue_id');
11
12
    public function association() {
13
        return $this->belongsTo('App\Association');
14
    }
15
16
    public function captains() {
17
        return $this->hasMany('App\User');
18
    }
19
20
    public function members() {
21
        return $this->hasMany('App\User');
22
    }
23
24
    public function homeVenue() {
25
        return $this->hasOne('App\Venue');
26
    }
27
28
}
29