| Total Complexity | 3 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | class SymfonyConsoleOutputExporter implements Exporter |
||
| 16 | { |
||
| 17 | private OutputInterface $output; |
||
| 18 | |||
| 19 | public function __construct(OutputInterface $output) |
||
| 20 | { |
||
| 21 | $this->output = $output; |
||
| 22 | $this->output->writeln(''); |
||
| 23 | } |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @inheritDoc |
||
| 27 | */ |
||
| 28 | public function process(array $pluginBlock, int $currentPage, int $maxPages): void |
||
| 29 | { |
||
| 30 | $this->output->writeln(" - Retrieved plugin block " . $currentPage . ' of ' . $maxPages); |
||
| 31 | } |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @inheritDoc |
||
| 35 | */ |
||
| 36 | public function finish(): void |
||
| 39 | } |
||
| 40 | } |
||
| 41 |
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