Conditions | 3 |
Paths | 3 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 12 |
Changes | 0 |
1 | <?php |
||
39 | public function getDisplayAmount() |
||
40 | { |
||
41 | if (in_array($this->type, $this->getBandwidthTypes(), true)) { |
||
|
|||
42 | return round($this->last / pow(10, 6), 2); |
||
43 | } elseif (in_array($this->type, $this->getTrafficTypes(), true)) { |
||
44 | return round($this->total / pow(10, 9), 2); |
||
45 | } |
||
46 | |||
47 | return $this->total; |
||
48 | } |
||
50 |