Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
29 | 1 | public function getDestructionCause(): SpacecraftDestructionCauseEnum |
|
30 | { |
||
31 | 1 | return match ($this) { |
|
32 | 1 | self::ALERT_YELLOW => SpacecraftDestructionCauseEnum::ALERT_YELLOW, |
|
33 | 1 | self::ALERT_RED => SpacecraftDestructionCauseEnum::ALERT_RED, |
|
34 | 1 | default => SpacecraftDestructionCauseEnum::SHIP_FIGHT |
|
35 | 1 | }; |
|
38 |