| Conditions | 3 |
| Paths | 3 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php |
||
| 34 | 8 | public function getStatColor(int $count, array $thresholds): string |
|
| 35 | { |
||
| 36 | 8 | if (!isset($thresholds[$this->getName()])) { |
|
| 37 | 6 | return 'white'; |
|
| 38 | } |
||
| 39 | 2 | if ($this->isWithinThreshold($count, $thresholds)) { |
|
| 40 | 1 | return 'green'; |
|
| 41 | } |
||
| 42 | 1 | $this->exceedThreshold = true; |
|
| 43 | 1 | return 'red'; |
|
| 44 | } |
||
| 78 |