| Total Complexity | 6 |
| Total Lines | 33 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | class ProgressDisplay implements ProcessorProgressDisplay |
||
| 20 | { |
||
| 21 | /** @var OutputInterface */ |
||
| 22 | private $output; |
||
| 23 | |||
| 24 | public function __construct(OutputInterface $output) |
||
| 25 | 72 | { |
|
| 26 | $this->output = $output; |
||
| 27 | 72 | } |
|
| 28 | 72 | ||
| 29 | public function start(): void |
||
| 30 | 30 | { |
|
| 31 | $this->display('Running... (This may take some time)'); |
||
| 32 | 30 | } |
|
| 33 | 30 | ||
| 34 | public function runningParser(): void |
||
| 35 | 30 | { |
|
| 36 | $this->display('Parsing codebase structure'); |
||
| 37 | 30 | } |
|
| 38 | 30 | ||
| 39 | public function runningProcessor(Processor $processor): void |
||
| 40 | 30 | { |
|
| 41 | $this->display("Running '{$processor->name()}' processor"); |
||
| 42 | 30 | } |
|
| 43 | 30 | ||
| 44 | public function savingResult(): void |
||
| 47 | 30 | } |
|
| 48 | 30 | ||
| 49 | private function display(string $message): void |
||
| 52 | 30 | } |
|
| 53 | } |
||
| 54 |
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