From fd78ec0bf16e7ba5f2dadbd5bb3a490b836c3777 Mon Sep 17 00:00:00 2001 From: Eugene Serkin Date: Mon, 26 Dec 2011 01:55:03 +0200 Subject: [PATCH] Fixed PhpDoc for Twig_TokenParserInterface and all other TokenParsers --- lib/Twig/TokenParser/AutoEscape.php | 2 +- lib/Twig/TokenParser/Block.php | 2 +- lib/Twig/TokenParser/Do.php | 2 +- lib/Twig/TokenParser/Extends.php | 2 +- lib/Twig/TokenParser/Filter.php | 2 +- lib/Twig/TokenParser/Flush.php | 2 +- lib/Twig/TokenParser/For.php | 2 +- lib/Twig/TokenParser/From.php | 2 +- lib/Twig/TokenParser/If.php | 2 +- lib/Twig/TokenParser/Import.php | 2 +- lib/Twig/TokenParser/Include.php | 2 +- lib/Twig/TokenParser/Macro.php | 2 +- lib/Twig/TokenParser/Sandbox.php | 2 +- lib/Twig/TokenParser/Set.php | 2 +- lib/Twig/TokenParser/Spaceless.php | 2 +- lib/Twig/TokenParser/Use.php | 2 +- lib/Twig/TokenParserInterface.php | 2 +- 17 files changed, 17 insertions(+), 17 deletions(-) diff --git a/lib/Twig/TokenParser/AutoEscape.php b/lib/Twig/TokenParser/AutoEscape.php index 3b4b96e..880e664 100644 --- a/lib/Twig/TokenParser/AutoEscape.php +++ b/lib/Twig/TokenParser/AutoEscape.php @@ -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() { diff --git a/lib/Twig/TokenParser/Block.php b/lib/Twig/TokenParser/Block.php index b31f7ed..36643f7 100644 --- a/lib/Twig/TokenParser/Block.php +++ b/lib/Twig/TokenParser/Block.php @@ -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() { diff --git a/lib/Twig/TokenParser/Do.php b/lib/Twig/TokenParser/Do.php index 17211fb..593d1c6 100644 --- a/lib/Twig/TokenParser/Do.php +++ b/lib/Twig/TokenParser/Do.php @@ -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() { diff --git a/lib/Twig/TokenParser/Extends.php b/lib/Twig/TokenParser/Extends.php index 67eacda..54f49ad 100644 --- a/lib/Twig/TokenParser/Extends.php +++ b/lib/Twig/TokenParser/Extends.php @@ -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() { diff --git a/lib/Twig/TokenParser/Filter.php b/lib/Twig/TokenParser/Filter.php index 0969ab1..2b97475 100644 --- a/lib/Twig/TokenParser/Filter.php +++ b/lib/Twig/TokenParser/Filter.php @@ -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() { diff --git a/lib/Twig/TokenParser/Flush.php b/lib/Twig/TokenParser/Flush.php index 4cf488c..4e15e78 100644 --- a/lib/Twig/TokenParser/Flush.php +++ b/lib/Twig/TokenParser/Flush.php @@ -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() { diff --git a/lib/Twig/TokenParser/For.php b/lib/Twig/TokenParser/For.php index 39755a4..2cbb580 100644 --- a/lib/Twig/TokenParser/For.php +++ b/lib/Twig/TokenParser/For.php @@ -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() { diff --git a/lib/Twig/TokenParser/From.php b/lib/Twig/TokenParser/From.php index 87aceb4..ba4d7ff 100644 --- a/lib/Twig/TokenParser/From.php +++ b/lib/Twig/TokenParser/From.php @@ -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() { diff --git a/lib/Twig/TokenParser/If.php b/lib/Twig/TokenParser/If.php index 65a1a8b..1a694af 100644 --- a/lib/Twig/TokenParser/If.php +++ b/lib/Twig/TokenParser/If.php @@ -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() { diff --git a/lib/Twig/TokenParser/Import.php b/lib/Twig/TokenParser/Import.php index d0a88cd..5219289 100644 --- a/lib/Twig/TokenParser/Import.php +++ b/lib/Twig/TokenParser/Import.php @@ -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() { diff --git a/lib/Twig/TokenParser/Include.php b/lib/Twig/TokenParser/Include.php index 5415455..6725b8f 100644 --- a/lib/Twig/TokenParser/Include.php +++ b/lib/Twig/TokenParser/Include.php @@ -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() { diff --git a/lib/Twig/TokenParser/Macro.php b/lib/Twig/TokenParser/Macro.php index 64f2ea5..ffd5848 100644 --- a/lib/Twig/TokenParser/Macro.php +++ b/lib/Twig/TokenParser/Macro.php @@ -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() { diff --git a/lib/Twig/TokenParser/Sandbox.php b/lib/Twig/TokenParser/Sandbox.php index 62e7f8f..0277c70 100644 --- a/lib/Twig/TokenParser/Sandbox.php +++ b/lib/Twig/TokenParser/Sandbox.php @@ -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() { diff --git a/lib/Twig/TokenParser/Set.php b/lib/Twig/TokenParser/Set.php index 489e1d3..3b4479c 100644 --- a/lib/Twig/TokenParser/Set.php +++ b/lib/Twig/TokenParser/Set.php @@ -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() { diff --git a/lib/Twig/TokenParser/Spaceless.php b/lib/Twig/TokenParser/Spaceless.php index aa7ffbc..1e3fa8f 100644 --- a/lib/Twig/TokenParser/Spaceless.php +++ b/lib/Twig/TokenParser/Spaceless.php @@ -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() { diff --git a/lib/Twig/TokenParser/Use.php b/lib/Twig/TokenParser/Use.php index 16c47e3..beafc80 100644 --- a/lib/Twig/TokenParser/Use.php +++ b/lib/Twig/TokenParser/Use.php @@ -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() { diff --git a/lib/Twig/TokenParserInterface.php b/lib/Twig/TokenParserInterface.php index 114a939..192c018 100644 --- a/lib/Twig/TokenParserInterface.php +++ b/lib/Twig/TokenParserInterface.php @@ -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(); } -- 1.7.2.5