fixed a notice in a unit test
authorFabien Potencier <fabien.potencier@gmail.com>
Fri, 7 Jan 2011 16:28:00 +0000 (17:28 +0100)
committerFabien Potencier <fabien.potencier@gmail.com>
Fri, 7 Jan 2011 16:28:00 +0000 (17:28 +0100)
lib/Twig/Environment.php
test/Twig/Tests/TemplateTest.php

index 52132b4..46a6df1 100644 (file)
@@ -713,6 +713,7 @@ class Twig_Environment
         if (null === $this->functions) {
             $this->loadFunctions();
         }
+
         $this->functions[$name] = $function;
     }
 
index 6492e88..77d5112 100644 (file)
@@ -95,7 +95,7 @@ class Twig_TemplateTest extends Twig_Template
     {
     }
 
-    public function getAttribute($object, $item, array $arguments = array(), $type = Twig_Node_Expression_GetAttr::TYPE_ANY, $noStrictCheck = false)
+    public function getAttribute($object, $item, array $arguments = array(), $type = Twig_Node_Expression_GetAttr::TYPE_ANY, $noStrictCheck = false, $lineno = -1)
     {
         return parent::getAttribute($object, $item, $arguments, $type);
     }