Total Complexity | 6 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | final class RefactorWarpdriveSplitRunner |
||
12 | { |
||
13 | private ShipRepositoryInterface $shipRepository; |
||
14 | |||
15 | private ShipWrapperFactoryInterface $shipWrapperFactory; |
||
16 | |||
17 | public function __construct( |
||
18 | ShipRepositoryInterface $shipRepository, |
||
19 | ShipWrapperFactoryInterface $shipWrapperFactory |
||
20 | ) { |
||
21 | $this->shipRepository = $shipRepository; |
||
22 | $this->shipWrapperFactory = $shipWrapperFactory; |
||
23 | } |
||
24 | |||
25 | public function refactor(): void |
||
43 | } |
||
44 | } |
||
46 |