Remove unused constructor arguments
authorEugene Leonovich <gen.work@gmail.com>
Mon, 12 May 2014 14:12:37 +0000 (16:12 +0200)
committerEugene Leonovich <gen.work@gmail.com>
Mon, 12 May 2014 14:12:37 +0000 (16:12 +0200)
There are no `line` and `nodeTag` arguments in `Twig_Node_Module::__construct()`

lib/Twig/Node/SandboxedModule.php

index be1f5da..0de4503 100644 (file)
@@ -23,7 +23,7 @@ class Twig_Node_SandboxedModule extends Twig_Node_Module
 
     public function __construct(Twig_Node_Module $node, array $usedFilters, array $usedTags, array $usedFunctions)
     {
-        parent::__construct($node->getNode('body'), $node->getNode('parent'), $node->getNode('blocks'), $node->getNode('macros'), $node->getNode('traits'), $node->getAttribute('embedded_templates'), $node->getAttribute('filename'), $node->getLine(), $node->getNodeTag());
+        parent::__construct($node->getNode('body'), $node->getNode('parent'), $node->getNode('blocks'), $node->getNode('macros'), $node->getNode('traits'), $node->getAttribute('embedded_templates'), $node->getAttribute('filename'));
 
         $this->setAttribute('index', $node->getAttribute('index'));