| Conditions | 4 |
| Paths | 3 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 20 |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | public function vinstfärg(array &$matris, array $arr, string $tecken): void { |
||
| 22 | foreach (array_keys($matris) as $index) { |
||
| 23 | $förlust = $index === 1 ? ' förlust' : ' storförlust'; |
||
| 24 | |||
| 25 | $matris[$index] = match (empty($arr[$index])) { |
||
| 26 | true => '', |
||
| 27 | default => ($arr[$index] == $tecken) ? ' vinst' : $förlust |
||
| 28 | }; |
||
| 32 |