EloquentHoleScoreRepository   A
last analyzed

Complexity

Total Complexity 6

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 6
lcom 0
cbo 0
dl 0
loc 10
rs 10
c 0
b 0
f 0

6 Methods

Rating   Name   Duplication   Size   Complexity  
A all() 0 1 1
A find() 0 1 1
A findByPlayer() 0 1 1
A findByMatch() 0 1 1
A create() 0 1 1
A update() 0 1 1
1
<?php namespace GolfLeague\Storage\Skin;
2
3
use \Skin as Skin;
4
5
class EloquentHoleScoreRepository implements SkinRepository
6
{
7
        public function all(){}
8
        public function find($id){}
9
        public function findByPlayer($playerId){}
10
        public function findByMatch($matchId){}
11
        public function create($input){}
12
        public function update($round){}
13
14
}