Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
26 | public function __construct(Node $name, \Twig\Node\Expression\AbstractExpression $parameters = null, Node $body, $lineno, $tag = null) |
||
27 | { |
||
28 | $nodes = [ |
||
29 | 'name' => $name, |
||
30 | 'body' => $body, |
||
31 | ]; |
||
32 | |||
33 | if (!\is_null($parameters)) { |
||
34 | $nodes['parameters'] = $parameters; |
||
35 | } |
||
36 | |||
37 | parent::__construct($nodes, [], $lineno, $tag); |
||
38 | } |
||
39 | |||
47 |