Feed   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 0
dl 0
loc 12
ccs 0
cts 5
cp 0
rs 10
c 0
b 0
f 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
getEntityInformations() 0 1 ?
retreiveField() 0 1 ?
A feed() 0 5 1
1
<?php namespace GameScan\WoW\Entity\Player;
2
3
trait Feed
4
{
5
6
    abstract public function getEntityInformations();
7
    abstract public function retreiveField($fielName);
8
9
    public function feed()
10
    {
11
        $this->retreiveField("feed");
12
        return $this->getEntityInformations()->feed;
13
    }
14
}
15