| Total Complexity | 2 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | #[Entity] |
||
| 11 | class SpacecraftCountData extends AbstractData |
||
| 12 | { |
||
| 13 | #[Column(type: 'integer')] |
||
| 14 | private int $spacecraftcount = 0; |
||
| 15 | #[Column(type: 'integer')] |
||
| 16 | private int $cloakcount = 0; |
||
| 17 | |||
| 18 | 4 | public function getSpacecraftCount(): int |
|
| 21 | } |
||
| 22 | |||
| 23 | 4 | public function hasCloakedShips(): bool |
|
| 28 |