| Total Complexity | 3 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class SystemEpsUsageWrapper |
||
| 10 | { |
||
| 11 | 1 | public function __construct( |
|
| 12 | private readonly SpacecraftSystem $system, |
||
| 13 | private readonly int $usage |
||
| 14 | 1 | ) {} |
|
| 15 | |||
| 16 | 1 | public function getSystem(): SpacecraftSystem |
|
| 17 | { |
||
| 18 | 1 | return $this->system; |
|
| 19 | } |
||
| 20 | |||
| 21 | 1 | public function getUsage(): int |
|
| 24 | } |
||
| 25 | } |
||
| 26 |