| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 28 | public function triggerAlternativeReaction(): bool |
||
| 29 | { |
||
| 30 | return match ($this) { |
||
| 31 | self::ON_TRACTOR => false, |
||
| 32 | self::ON_ATTACK => true, |
||
| 33 | self::ON_INTERCEPTION => true, |
||
| 34 | self::ON_BEAM => true, |
||
| 35 | self::ON_SCAN => true, |
||
| 36 | self::ON_SUPPORT_CALL => true, |
||
| 37 | self::ON_RAGE => true |
||
| 38 | }; |
||
| 41 |