Some code style fixes

This commit is contained in:
Den
2021-04-16 18:50:36 +03:00
committed by Fabien Potencier
parent 32d72de188
commit 17c6371fb5
10 changed files with 13 additions and 14 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ class IncludeNode extends Node implements NodeOutputInterface
$nodes['variables'] = $variables;
}
parent::__construct($nodes, ['only' => (bool) $only, 'ignore_missing' => (bool) $ignoreMissing], $lineno, $tag);
parent::__construct($nodes, ['only' => $only, 'ignore_missing' => $ignoreMissing], $lineno, $tag);
}
public function compile(Compiler $compiler): void