fixed CS
authorFabien Potencier <fabien.potencier@gmail.com>
Tue, 28 Dec 2010 18:50:01 +0000 (19:50 +0100)
committerFabien Potencier <fabien.potencier@gmail.com>
Thu, 30 Dec 2010 08:31:09 +0000 (09:31 +0100)
lib/Twig/Environment.php
lib/Twig/Extension.php
lib/Twig/Node/Expression/AssignLocalName.php
lib/Twig/Node/Expression/LocalName.php
lib/Twig/TokenParser/From.php

index 79ccfe1..a1aaea1 100644 (file)
@@ -482,7 +482,7 @@ class Twig_Environment
         if (isset($this->functions[$name])) {
             return $this->functions[$name];
         }
-        
+
         return null;
     }
 
index 7690984..8327c43 100644 (file)
@@ -60,7 +60,7 @@ abstract class Twig_Extension implements Twig_ExtensionInterface
     {
         return array();
     }
-    
+
     /**
      * Returns a list of functions to add to the existing list.
      *
index ff9f6a1..68868a8 100644 (file)
@@ -12,7 +12,7 @@
 
 /**
  * Represents a local private variable.
- * 
+ *
  * Such variables are not visible from templates.
  *
  * @package    twig
index 0601063..aac10bb 100644 (file)
@@ -26,7 +26,7 @@ class Twig_Node_Expression_LocalName extends Twig_Node_Expression
     {
         if (null === $name) {
             $uniq = self::$counter++;
-            $name = '__' . $uniq;
+            $name = '__'.$uniq;
         }
 
         parent::__construct(array(), array('name' => $name), $lineno);
@@ -34,7 +34,7 @@ class Twig_Node_Expression_LocalName extends Twig_Node_Expression
 
     public function compile($compiler)
     {
-        $compiler->raw('$' . $this->getAttribute('name'));
+        $compiler->raw('$'.$this->getAttribute('name'));
     }
 }
 
index f71027a..788239b 100644 (file)
@@ -47,8 +47,7 @@ class Twig_TokenParser_From extends Twig_TokenParser
 
         $node = new Twig_Node_From($macro, $token->getLine(), $this->getTag());
 
-        foreach($targets as $name => $alias)
-        {
+        foreach($targets as $name => $alias) {
             $this->parser->addImportedFunction($alias, $name, $node->getNode('var'));
         }