Conditions | 3 |
Paths | 4 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 12 |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
52 | protected function relativePercent(float $relative): string |
||
53 | { |
||
54 | $color = 'green'; |
||
55 | if ($relative > 1) { |
||
56 | $color = 'red'; |
||
57 | } |
||
58 | if ($relative >= 0.03) { |
||
59 | $color = 'yellow'; |
||
60 | } |
||
61 | return |
||
62 | $this->theme->$color( |
||
63 | parent::relativePercent($relative) |
||
64 | ); |
||
68 |