Total Complexity | 6 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
19 | final class ConsoleProgressDisplay implements ProgressDisplay |
||
20 | { |
||
21 | public function __construct(private OutputInterface $output) |
||
22 | { |
||
23 | } |
||
24 | |||
25 | public function start(): void |
||
26 | { |
||
27 | $this->display('Running... (This may take some time)'); |
||
28 | } |
||
29 | |||
30 | public function runningParser(): void |
||
33 | } |
||
34 | |||
35 | public function runningProcessor(Processor $processor): void |
||
38 | } |
||
39 | |||
40 | public function savingResult(): void |
||
43 | } |
||
44 | |||
45 | private function display(string $message): void |
||
48 | } |
||
49 | } |
||
50 |
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