Fixed PhpDoc for Twig_TokenParserInterface and all other TokenParsers
authorEugene Serkin <jeserkin@gmail.com>
Sun, 25 Dec 2011 23:55:03 +0000 (01:55 +0200)
committerEugene Serkin <jeserkin@gmail.com>
Sun, 25 Dec 2011 23:55:03 +0000 (01:55 +0200)
17 files changed:
lib/Twig/TokenParser/AutoEscape.php
lib/Twig/TokenParser/Block.php
lib/Twig/TokenParser/Do.php
lib/Twig/TokenParser/Extends.php
lib/Twig/TokenParser/Filter.php
lib/Twig/TokenParser/Flush.php
lib/Twig/TokenParser/For.php
lib/Twig/TokenParser/From.php
lib/Twig/TokenParser/If.php
lib/Twig/TokenParser/Import.php
lib/Twig/TokenParser/Include.php
lib/Twig/TokenParser/Macro.php
lib/Twig/TokenParser/Sandbox.php
lib/Twig/TokenParser/Set.php
lib/Twig/TokenParser/Spaceless.php
lib/Twig/TokenParser/Use.php
lib/Twig/TokenParserInterface.php

index 3b4b96e..880e664 100644 (file)
@@ -68,7 +68,7 @@ class Twig_TokenParser_AutoEscape extends Twig_TokenParser
     /**
      * Gets the tag name associated with this token parser.
      *
-     * @param string The tag name
+     * @return string The tag name
      */
     public function getTag()
     {
index b31f7ed..36643f7 100644 (file)
@@ -74,7 +74,7 @@ class Twig_TokenParser_Block extends Twig_TokenParser
     /**
      * Gets the tag name associated with this token parser.
      *
-     * @param string The tag name
+     * @return string The tag name
      */
     public function getTag()
     {
index 17211fb..593d1c6 100644 (file)
@@ -33,7 +33,7 @@ class Twig_TokenParser_Do extends Twig_TokenParser
     /**
      * Gets the tag name associated with this token parser.
      *
-     * @param string The tag name
+     * @return string The tag name
      */
     public function getTag()
     {
index 67eacda..54f49ad 100644 (file)
@@ -45,7 +45,7 @@ class Twig_TokenParser_Extends extends Twig_TokenParser
     /**
      * Gets the tag name associated with this token parser.
      *
-     * @param string The tag name
+     * @return string The tag name
      */
     public function getTag()
     {
index 0969ab1..2b97475 100644 (file)
@@ -52,7 +52,7 @@ class Twig_TokenParser_Filter extends Twig_TokenParser
     /**
      * Gets the tag name associated with this token parser.
      *
-     * @param string The tag name
+     * @return string The tag name
      */
     public function getTag()
     {
index 4cf488c..4e15e78 100644 (file)
@@ -33,7 +33,7 @@ class Twig_TokenParser_Flush extends Twig_TokenParser
     /**
      * Gets the tag name associated with this token parser.
      *
-     * @param string The tag name
+     * @return string The tag name
      */
     public function getTag()
     {
index 39755a4..2cbb580 100644 (file)
@@ -80,7 +80,7 @@ class Twig_TokenParser_For extends Twig_TokenParser
     /**
      * Gets the tag name associated with this token parser.
      *
-     * @param string The tag name
+     * @return string The tag name
      */
     public function getTag()
     {
index 87aceb4..ba4d7ff 100644 (file)
@@ -65,7 +65,7 @@ class Twig_TokenParser_From extends Twig_TokenParser
     /**
      * Gets the tag name associated with this token parser.
      *
-     * @param string The tag name
+     * @return string The tag name
      */
     public function getTag()
     {
index 65a1a8b..1a694af 100644 (file)
@@ -84,7 +84,7 @@ class Twig_TokenParser_If extends Twig_TokenParser
     /**
      * Gets the tag name associated with this token parser.
      *
-     * @param string The tag name
+     * @return string The tag name
      */
     public function getTag()
     {
index d0a88cd..5219289 100644 (file)
@@ -38,7 +38,7 @@ class Twig_TokenParser_Import extends Twig_TokenParser
     /**
      * Gets the tag name associated with this token parser.
      *
-     * @param string The tag name
+     * @return string The tag name
      */
     public function getTag()
     {
index 5415455..6725b8f 100644 (file)
@@ -62,7 +62,7 @@ class Twig_TokenParser_Include extends Twig_TokenParser
     /**
      * Gets the tag name associated with this token parser.
      *
-     * @param string The tag name
+     * @return string The tag name
      */
     public function getTag()
     {
index 64f2ea5..ffd5848 100644 (file)
@@ -60,7 +60,7 @@ class Twig_TokenParser_Macro extends Twig_TokenParser
     /**
      * Gets the tag name associated with this token parser.
      *
-     * @param string The tag name
+     * @return string The tag name
      */
     public function getTag()
     {
index 62e7f8f..0277c70 100644 (file)
@@ -46,7 +46,7 @@ class Twig_TokenParser_Sandbox extends Twig_TokenParser
     /**
      * Gets the tag name associated with this token parser.
      *
-     * @param string The tag name
+     * @return string The tag name
      */
     public function getTag()
     {
index 489e1d3..3b4479c 100644 (file)
@@ -75,7 +75,7 @@ class Twig_TokenParser_Set extends Twig_TokenParser
     /**
      * Gets the tag name associated with this token parser.
      *
-     * @param string The tag name
+     * @return string The tag name
      */
     public function getTag()
     {
index aa7ffbc..1e3fa8f 100644 (file)
@@ -50,7 +50,7 @@ class Twig_TokenParser_Spaceless extends Twig_TokenParser
     /**
      * Gets the tag name associated with this token parser.
      *
-     * @param string The tag name
+     * @return string The tag name
      */
     public function getTag()
     {
index 16c47e3..beafc80 100644 (file)
@@ -76,7 +76,7 @@ class Twig_TokenParser_Use extends Twig_TokenParser
     /**
      * Gets the tag name associated with this token parser.
      *
-     * @param string The tag name
+     * @return string The tag name
      */
     public function getTag()
     {
index 114a939..192c018 100644 (file)
@@ -36,7 +36,7 @@ interface Twig_TokenParserInterface
     /**
      * Gets the tag name associated with this token parser.
      *
-     * @param string The tag name
+     * @return string The tag name
      */
     function getTag();
 }