| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 31 | protected function fetchData(): array |
||
| 32 | { |
||
| 33 | $boards = Board::find()->andWhereMember($this->member)->andFilterWhere(['id' => $this->board])->all($this->client); |
||
| 34 | $cards = []; |
||
| 35 | foreach ($boards as $board) { |
||
| 36 | $cards[] = $board->getCards(); |
||
| 37 | } |
||
| 38 | $this->from = array_merge(...$cards); |
||
| 39 | return parent::fetchData(); |
||
| 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