Passed
Pull Request — master (#1904)
by Nico
39:29 queued 12:01
created

CancelRetrofit::cancelRetrofit()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 13
Code Lines 7

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 6

Importance

Changes 0
Metric Value
cc 2
eloc 7
nc 2
nop 1
dl 0
loc 13
ccs 0
cts 7
cp 0
crap 6
rs 10
c 0
b 0
f 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Stu\Component\Ship\Retrofit;
6
7
use Override;
0 ignored issues
show
Bug introduced by
The type Override was not found. Maybe you did not declare it correctly or list all dependencies?

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:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
8
use Stu\Component\Ship\ShipStateEnum;
9
use Stu\Orm\Entity\ShipInterface;
10
use Stu\Orm\Repository\ColonyShipQueueRepositoryInterface;
11
use Stu\Orm\Repository\ShipRepositoryInterface;
12
13
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
35
    {
36
        $ship->setState(ShipStateEnum::SHIP_STATE_NONE);
37
        $this->shipRepository->save($ship);
38
    }
39
}