| Conditions | 2 |
| Paths | 2 |
| Total Lines | 14 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 46 | public function translate($value, array $payload) |
||
| 47 | { |
||
| 48 | if ($payload[static::KEY_PARENT] === null) { |
||
| 49 | $value[static::KEY_ABSTRACT_SKU] = $this->createAbstractSKU($payload[static::KEY_IDENTIFIER]); |
||
| 50 | $value[static::ABSTRACT_IDENTIFIER] = true; |
||
| 51 | |||
| 52 | return $value; |
||
| 53 | } |
||
| 54 | |||
| 55 | $value = []; |
||
| 56 | $value[static::KEY_ABSTRACT_SKU] = $payload[static::KEY_PARENT]; |
||
| 57 | $value[static::ABSTRACT_IDENTIFIER] = false; |
||
| 58 | |||
| 59 | return $value; |
||
| 60 | } |
||
| 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