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