Conditions | 2 |
Paths | 2 |
Total Lines | 16 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
23 | public function run(ExampleStoreInterface $exampleStore): iterable |
||
24 | { |
||
25 | $examples = $exampleStore->getExamples(); |
||
26 | |||
27 | if ($examples instanceof \Traversable) { |
||
28 | $examples = iterator_to_array($examples, false); |
||
29 | } |
||
30 | |||
31 | // @phpstan-ignore-next-line |
||
32 | return wait( |
||
33 | parallelMap( |
||
34 | $examples, |
||
35 | function (ExampleObj $example): OutcomeInterface { |
||
36 | $runner = new EvalRunner(); |
||
37 | $runner->setBootstrap($this->bootstrap); |
||
38 | return $runner->runExample($example); |
||
39 | } |
||
44 |
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