Total Complexity | 2 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | abstract class AbstractJob implements JobInterface |
||
|
|||
16 | { |
||
17 | /** |
||
18 | * Data. |
||
19 | * |
||
20 | * @var mixed |
||
21 | **/ |
||
22 | protected $data; |
||
23 | |||
24 | /** |
||
25 | * Get data. |
||
26 | * |
||
27 | * @param mixed $data |
||
28 | * |
||
29 | * @return JobInterface |
||
30 | */ |
||
31 | public function setData($data): JobInterface |
||
32 | { |
||
33 | $this->data = $data; |
||
34 | |||
35 | return $this; |
||
36 | } |
||
37 | |||
38 | /** |
||
39 | * Get data. |
||
40 | * |
||
41 | * @return mixed |
||
42 | */ |
||
43 | public function getData() |
||
46 | } |
||
47 | } |
||
48 |
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