| Conditions | 3 |
| Paths | 3 |
| Total Lines | 9 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 53 | private function deepArray(array|stdClass $values): array |
||
| 54 | { |
||
| 55 | $result = []; |
||
| 56 | /** @psalm-suppress MixedAssignment */ |
||
| 57 | foreach ($values as $key => $value) { //@phpstan-ignore-line |
||
| 58 | $result[$key] = is_object($value) ? $this->deepArray((array) $value) : $result[$key] = $value; |
||
| 59 | } |
||
| 60 | |||
| 61 | return $result; |
||
| 62 | } |
||
| 64 |
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