| Conditions | 1 |
| Paths | 1 |
| Total Lines | 17 |
| Code Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 52 | public function findAll(): FamilyLogs |
||
| 53 | { |
||
| 54 | $statement = $this->createQueryBuilder('fl') |
||
| 55 | ->getQuery() |
||
| 56 | ->getResult() |
||
| 57 | ; |
||
| 58 | |||
| 59 | return new FamilyLogs( |
||
| 60 | ...\array_map(static function (FamilyLog $familyLog) { |
||
| 61 | return new FamilyLogModel( |
||
| 62 | $familyLog->name(), |
||
| 63 | $familyLog->parent(), |
||
| 64 | $familyLog->children(), |
||
| 65 | $familyLog->path(), |
||
| 66 | $familyLog->slug() |
||
| 67 | ); |
||
| 68 | }, $statement) |
||
| 69 | ); |
||
| 72 |
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