mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-13 10:56:38 +00:00
fixed some phpdoc
This commit is contained in:
@@ -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
|
||||
*/
|
||||
|
||||
@@ -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)
|
||||
{
|
||||
|
||||
@@ -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)
|
||||
{
|
||||
|
||||
@@ -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)
|
||||
{
|
||||
|
||||
@@ -24,5 +24,5 @@ interface Twig_ParserInterface
|
||||
*
|
||||
* @return Twig_Node_Module A node tree
|
||||
*/
|
||||
function parse(Twig_TokenStream $code);
|
||||
function parse(Twig_TokenStream $stream);
|
||||
}
|
||||
|
||||
+3
-2
@@ -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
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user