| Total Complexity | 6 |
| Total Lines | 38 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | class SubSpaceSystemData extends AbstractSystemData |
||
| 13 | { |
||
| 14 | public ?int $spacecraftId = null; |
||
| 15 | public ?int $analyzeTime = null; |
||
| 16 | |||
| 17 | public function __construct( |
||
| 18 | SpacecraftSystemRepositoryInterface $shipSystemRepository, |
||
| 19 | StatusBarFactoryInterface $statusBarFactory |
||
| 20 | ) { |
||
| 21 | parent::__construct($shipSystemRepository, $statusBarFactory); |
||
| 22 | } |
||
| 23 | |||
| 24 | #[Override] |
||
| 25 | public function getSystemType(): SpacecraftSystemTypeEnum |
||
| 26 | { |
||
| 27 | return SpacecraftSystemTypeEnum::SUBSPACE_SCANNER; |
||
| 28 | } |
||
| 29 | |||
| 30 | public function getSpacecraftId(): ?int |
||
| 31 | { |
||
| 32 | return $this->spacecraftId ?? null; |
||
| 33 | } |
||
| 34 | |||
| 35 | public function setSpacecraftId(?int $spacecraftId): SubSpaceSystemData |
||
| 39 | } |
||
| 40 | |||
| 41 | public function getAnalyzeTime(): ?int |
||
| 44 | } |
||
| 45 | |||
| 46 | public function setAnalyzeTime(?int $analyzeTime): SubSpaceSystemData |
||
| 50 | } |
||
| 51 | } |
||
| 52 |
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