Fixed PHP 5.3 namespace dependency (Issues a warning in PHP 5.2).
authorMatt Agar <matt.agar@gmail.com>
Mon, 4 Oct 2010 22:58:35 +0000 (09:58 +1100)
committerFabien Potencier <fabien.potencier@gmail.com>
Tue, 5 Oct 2010 05:55:46 +0000 (07:55 +0200)
lib/Twig/Template.php

index 2cc752d..8e5abe0 100644 (file)
@@ -37,7 +37,7 @@ abstract class Twig_Template implements Twig_TemplateInterface
         if (false !== $parent = $this->getParent($context)) {
             return $parent->getBlock($name, $context, $blocks);
         } else {
-            throw new \LogicException('This template has no parent.');
+            throw new LogicException('This template has no parent.');
         }
     }