This commit is contained in:
Luis Cordova
2013-04-13 12:53:49 -05:00
parent 6a25c5db56
commit a4daa4ca94
+2 -2
View File
@@ -385,9 +385,9 @@ The ``Project_Set_Node`` class itself is rather simple::
class Project_Set_Node extends Twig_Node
{
public function __construct($name, Twig_Node_Expression $value, $lineNo, $tag = null)
public function __construct($name, Twig_Node_Expression $value, $line, $tag = null)
{
parent::__construct(array('value' => $value), array('name' => $name), $lineNo, $tag);
parent::__construct(array('value' => $value), array('name' => $name), $line, $tag);
}
public function compile(Twig_Compiler $compiler)