Total Complexity | 2 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
18 | class DataCron extends Job |
||
19 | { |
||
20 | private $logger; |
||
21 | private $DataService; |
||
22 | |||
23 | public function __construct( |
||
24 | string $AppName, |
||
25 | IRequest $request, |
||
26 | ILogger $logger, |
||
27 | DataService $DataService |
||
28 | ) |
||
29 | { |
||
30 | parent::__construct($AppName, $request); |
||
31 | $this->logger = $logger; |
||
32 | $this->DataService = $DataService; |
||
33 | } |
||
34 | |||
35 | /** |
||
36 | * @param $argument |
||
37 | * @SuppressWarnings(PHPMD.UnusedFormalParameter) |
||
38 | */ |
||
39 | protected function run() |
||
41 | //ToDo |
||
42 | } |
||
43 | } |
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