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

CancelRetrofit   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 24
Duplicated Lines 0 %

Test Coverage

Coverage 9.09%

Importance

Changes 0
Metric Value
eloc 10
dl 0
loc 24
ccs 1
cts 11
cp 0.0909
rs 10
c 0
b 0
f 0
wmc 4

3 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 1 1
A setStateNoneAndSave() 0 4 1
A cancelRetrofit() 0 13 2
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
}