| Total Complexity | 3 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class ProjectileLauncherSystemData extends AbstractSystemData |
||
| 10 | { |
||
| 11 | public int $shieldPenetration = 0; |
||
| 12 | |||
| 13 | function getSystemType(): ShipSystemTypeEnum |
||
| 14 | { |
||
| 15 | return ShipSystemTypeEnum::SYSTEM_TORPEDO; |
||
| 16 | } |
||
| 17 | |||
| 18 | public function getShieldPenetration(): int |
||
| 19 | { |
||
| 20 | return $this->shieldPenetration; |
||
| 21 | } |
||
| 22 | |||
| 23 | public function setShieldPenetration(int $shieldPenetration): ProjectileLauncherSystemData |
||
| 27 | } |
||
| 28 | } |
||
| 29 |