Total Complexity | 2 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | #[ORM\Entity] |
||
9 | #[ORM\Table(name: 'dtc_queue_job_timing')] |
||
10 | #[ORM\Index(columns: ['status', 'finished_at'], name: 'job_timing_finished_at')] |
||
11 | class JobTiming extends BaseJobTiming |
||
12 | { |
||
13 | #[ORM\Column(name: 'id', type: 'bigint')] |
||
14 | #[ORM\Id] |
||
15 | #[ORM\GeneratedValue(strategy: 'AUTO')] |
||
16 | protected $id; |
||
17 | |||
18 | #[ORM\Column(name: 'finished_at', type: 'datetime')] |
||
19 | protected $finishedAt; |
||
20 | |||
21 | #[ORM\Column(name: 'status', type: 'integer')] |
||
22 | protected $status; |
||
23 | |||
24 | /** |
||
25 | * @return mixed |
||
26 | */ |
||
27 | public function getId() |
||
28 | { |
||
29 | return $this->id; |
||
30 | } |
||
31 | |||
32 | /** |
||
33 | * @param mixed $id |
||
34 | 1 | */ |
|
35 | public function setId($id) |
||
38 | } |
||
39 | } |
||
40 |
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