| Conditions | 3 |
| Paths | 3 |
| Total Lines | 12 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 1 | Features | 1 |
| 1 | <?php |
||
| 21 | public function fromNative($input) |
||
| 22 | { |
||
| 23 | if ($input instanceof ValueObjectInterface) { |
||
| 24 | return $this->fromNative($input->toNative()); |
||
| 25 | } |
||
| 26 | $res = []; |
||
| 27 | assert(is_iterable($input)); |
||
| 28 | foreach ($input as $key => $value) { |
||
| 29 | assert(TypeUtils::fromObjectToTypeUtilInterface($key, $value)); |
||
| 30 | $res[$key] = $value; |
||
| 31 | } |
||
| 32 | return $res; |
||
| 33 | } |
||
| 71 |
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