removed n/a strings leftover
authorFabien Potencier <fabien.potencier@gmail.com>
Sat, 18 Dec 2010 07:02:24 +0000 (08:02 +0100)
committerFabien Potencier <fabien.potencier@gmail.com>
Sat, 18 Dec 2010 07:02:24 +0000 (08:02 +0100)
lib/Twig/LexerInterface.php
lib/Twig/Template.php

index 1ef0b86..5c1af5d 100644 (file)
@@ -25,5 +25,5 @@ interface Twig_LexerInterface
      *
      * @return Twig_TokenStream A token stream instance
      */
-    public function tokenize($code, $filename = 'n/a');
+    public function tokenize($code, $filename = null);
 }
index 5311583..4f9eab6 100644 (file)
@@ -24,7 +24,7 @@ abstract class Twig_Template implements Twig_TemplateInterface
 
     public function getTemplateName()
     {
-        return 'n/a';
+        return null;
     }
 
     public function getEnvironment()