| Conditions | 3 |
| Paths | 3 |
| Total Lines | 16 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | public function __invoke(Chart $chart): array |
||
| 26 | { |
||
| 27 | $ranking = $this->playerChartRankingProvider->getRankingDisabled($chart); |
||
| 28 | |||
| 29 | for ($i = 0; $i <= count($ranking) - 1; $i++) { |
||
| 30 | foreach ($chart->getLibs() as $lib) { |
||
| 31 | $key = $lib->getId(); |
||
| 32 | // format value |
||
| 33 | $ranking[$i]['values'][] = Score::formatScore( |
||
| 34 | $ranking[$i]["value_$key"], |
||
| 35 | $lib->getType()->getMask() |
||
| 36 | ); |
||
| 37 | } |
||
| 38 | } |
||
| 39 | |||
| 40 | return $ranking; |
||
| 41 | } |
||
| 43 |
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