| Total Complexity | 4 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | final class EmergencyWrapper |
||
| 12 | { |
||
| 13 | public function __construct(private PlayerRelationDeterminatorInterface $playerRelationDeterminator, private SpacecraftEmergencyInterface $emergency, private UserInterface $user) {} |
||
| 14 | |||
| 15 | public function get(): SpacecraftEmergencyInterface |
||
| 16 | { |
||
| 17 | return $this->emergency; |
||
| 18 | } |
||
| 19 | |||
| 20 | public function showDetails(): bool |
||
| 29 | } |
||
| 30 | } |
||
| 31 |