fixed some phpdoc
authorFabien Potencier <fabien.potencier@gmail.com>
Wed, 11 Jan 2012 12:27:00 +0000 (13:27 +0100)
committerFabien Potencier <fabien.potencier@gmail.com>
Wed, 11 Jan 2012 12:27:00 +0000 (13:27 +0100)
lib/Twig/Compiler.php
lib/Twig/Environment.php
lib/Twig/NodeVisitor/Escaper.php
lib/Twig/NodeVisitor/Sandbox.php
lib/Twig/ParserInterface.php
lib/Twig/Token.php

index db2e8de..b1330b0 100644 (file)
@@ -56,8 +56,8 @@ class Twig_Compiler implements Twig_CompilerInterface
     /**
      * Compiles a node.
      *
-     * @param Twig_NodeInterface $node   The node to compile
-     * @param integer            $indent The current indentation
+     * @param Twig_NodeInterface $node        The node to compile
+     * @param integer            $indentation The current indentation
      *
      * @return Twig_Compiler The current compiler instance
      */
@@ -123,7 +123,7 @@ class Twig_Compiler implements Twig_CompilerInterface
     /**
      * Adds a quoted string to the compiled code.
      *
-     * @param  string $string The string
+     * @param  string $value The string
      *
      * @return Twig_Compiler The current compiler instance
      */
@@ -188,7 +188,7 @@ class Twig_Compiler implements Twig_CompilerInterface
     /**
      * Indents the generated code.
      *
-     * @param integer $indent The number of indentation to add
+     * @param integer $step The number of indentation to add
      *
      * @return Twig_Compiler The current compiler instance
      */
@@ -202,7 +202,7 @@ class Twig_Compiler implements Twig_CompilerInterface
     /**
      * Outdents the generated code.
      *
-     * @param integer $indent The number of indentation to remove
+     * @param integer $step The number of indentation to remove
      *
      * @return Twig_Compiler The current compiler instance
      */
index 4ea903a..f6eac6c 100644 (file)
@@ -743,8 +743,8 @@ class Twig_Environment
     /**
      * Registers a Filter.
      *
-     * @param string               $name    The filter name
-     * @param Twig_FilterInterface $visitor A Twig_FilterInterface instance
+     * @param string               $name   The filter name
+     * @param Twig_FilterInterface $filter A Twig_FilterInterface instance
      */
     public function addFilter($name, Twig_FilterInterface $filter)
     {
@@ -822,8 +822,8 @@ class Twig_Environment
     /**
      * Registers a Test.
      *
-     * @param string             $name    The test name
-     * @param Twig_TestInterface $visitor A Twig_TestInterface instance
+     * @param string             $name The test name
+     * @param Twig_TestInterface $test A Twig_TestInterface instance
      */
     public function addTest($name, Twig_TestInterface $test)
     {
index d848f80..7a80caa 100644 (file)
@@ -34,7 +34,7 @@ class Twig_NodeVisitor_Escaper implements Twig_NodeVisitorInterface
      * @param Twig_NodeInterface $node The node to visit
      * @param Twig_Environment   $env  The Twig environment instance
      *
-     * @param Twig_NodeInterface The modified node
+     * @return Twig_NodeInterface The modified node
      */
     public function enterNode(Twig_NodeInterface $node, Twig_Environment $env)
     {
@@ -53,7 +53,7 @@ class Twig_NodeVisitor_Escaper implements Twig_NodeVisitorInterface
      * @param Twig_NodeInterface $node The node to visit
      * @param Twig_Environment   $env  The Twig environment instance
      *
-     * @param Twig_NodeInterface The modified node
+     * @return Twig_NodeInterface The modified node
      */
     public function leaveNode(Twig_NodeInterface $node, Twig_Environment $env)
     {
index 356b661..1957f8a 100644 (file)
@@ -28,7 +28,7 @@ class Twig_NodeVisitor_Sandbox implements Twig_NodeVisitorInterface
      * @param Twig_NodeInterface $node The node to visit
      * @param Twig_Environment   $env  The Twig environment instance
      *
-     * @param Twig_NodeInterface The modified node
+     * @return Twig_NodeInterface The modified node
      */
     public function enterNode(Twig_NodeInterface $node, Twig_Environment $env)
     {
@@ -70,7 +70,7 @@ class Twig_NodeVisitor_Sandbox implements Twig_NodeVisitorInterface
      * @param Twig_NodeInterface $node The node to visit
      * @param Twig_Environment   $env  The Twig environment instance
      *
-     * @param Twig_NodeInterface The modified node
+     * @return Twig_NodeInterface The modified node
      */
     public function leaveNode(Twig_NodeInterface $node, Twig_Environment $env)
     {
index c7a3441..4cb6d28 100644 (file)
@@ -24,5 +24,5 @@ interface Twig_ParserInterface
      *
      * @return Twig_Node_Module A node tree
      */
-    function parse(Twig_TokenStream $code);
+    function parse(Twig_TokenStream $stream);
 }
index 9bc7119..918bb91 100644 (file)
@@ -122,6 +122,7 @@ class Twig_Token
      *
      * @param integer $type  The type as an integer
      * @param Boolean $short Whether to return a short representation or not
+     * @param integer $line  The code line
      *
      * @return string The string representation
      */
@@ -177,8 +178,8 @@ class Twig_Token
     /**
      * Returns the english representation of a given type.
      *
-     * @param integer $type  The type as an integer
-     * @param Boolean $short Whether to return a short representation or not
+     * @param integer $type The type as an integer
+     * @param integer $line The code line
      *
      * @return string The string representation
      */