| Total Complexity | 6 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 19 | final class ConsoleProgressDisplay implements ProgressDisplay |
||
| 20 | { |
||
| 21 | private OutputInterface $output; |
||
| 22 | |||
| 23 | public function __construct(OutputInterface $output) |
||
| 24 | { |
||
| 25 | $this->output = $output; |
||
| 26 | } |
||
| 27 | |||
| 28 | public function start(): void |
||
| 29 | { |
||
| 30 | $this->display('Running... (This may take some time)'); |
||
| 31 | } |
||
| 32 | |||
| 33 | public function runningParser(): void |
||
| 36 | } |
||
| 37 | |||
| 38 | public function runningProcessor(Processor $processor): void |
||
| 41 | } |
||
| 42 | |||
| 43 | public function savingResult(): void |
||
| 46 | } |
||
| 47 | |||
| 48 | private function display(string $message): void |
||
| 51 | } |
||
| 52 | } |
||
| 53 |
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