| Total Complexity | 2 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Coverage | 20% |
| Changes | 2 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 12 | final class ShipCreator implements ShipCreatorInterface |
||
| 13 | { |
||
| 14 | /** @param SpacecraftCreatorInterface<ShipWrapperInterface> $spacecraftCreator */ |
||
| 15 | 1 | public function __construct( |
|
| 16 | private SpacecraftBuildplanRepositoryInterface $buildplanRepository, |
||
| 17 | private SpacecraftCreatorInterface $spacecraftCreator |
||
| 18 | 1 | ) {} |
|
| 19 | |||
| 20 | public function createBy( |
||
| 34 | } |
||
| 35 | } |
||
| 36 |