Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
29 | public function parse(Twig_Token $token): ShopUiCompatibilityDefineTwigNode |
||
30 | { |
||
31 | $parser = $this->parser; |
||
32 | $stream = $parser->getStream(); |
||
33 | $name = $stream->expect(Twig_Token::NAME_TYPE)->getValue(); |
||
34 | $stream->expect(Twig_Token::OPERATOR_TYPE, '='); |
||
35 | $value = $parser->getExpressionParser()->parseExpression(); |
||
36 | $line = $token->getLine(); |
||
37 | $tag = $this->getTag(); |
||
38 | $stream->expect(Twig_Token::BLOCK_END_TYPE); |
||
39 | |||
40 | return new ShopUiCompatibilityDefineTwigNode($name, $value, $line, $tag); |
||
41 | } |
||
43 |
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