| Total Complexity | 4 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Coverage | 9.09% |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | final class CancelRetrofit implements CancelRetrofitInterface |
||
| 15 | { |
||
| 16 | 4 | public function __construct(private ShipRepositoryInterface $shipRepository, private ColonyShipQueueRepositoryInterface $colonyShipQueueRepository) {} |
|
| 17 | |||
| 18 | |||
| 19 | #[Override] |
||
| 20 | public function cancelRetrofit(ShipInterface $ship): bool |
||
| 21 | { |
||
| 22 | $state = $ship->getState(); |
||
| 23 | if ($state === ShipStateEnum::SHIP_STATE_RETROFIT) { |
||
| 24 | $this->setStateNoneAndSave($ship); |
||
| 25 | |||
| 26 | $this->colonyShipQueueRepository->truncateByShip($ship->getId()); |
||
| 27 | |||
| 28 | return true; |
||
| 29 | } |
||
| 30 | |||
| 31 | return false; |
||
| 32 | } |
||
| 33 | |||
| 34 | private function setStateNoneAndSave(ShipInterface $ship): void |
||
| 38 | } |
||
| 39 | } |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths