Feed::retreiveField()
last analyzed

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
ccs 0
cts 0
cp 0
c 0
b 0
f 0
nc 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