Upgrade Twig library

This commit is contained in:
Michael Foster 2013-08-01 15:20:12 -04:00
parent 22f3a95e0e
commit 0fe5528574
133 changed files with 5080 additions and 1386 deletions

View file

@ -12,8 +12,7 @@
/**
* Interface implemented by token parsers.
*
* @package twig
* @author Fabien Potencier <fabien@symfony.com>
* @author Fabien Potencier <fabien@symfony.com>
*/
interface Twig_TokenParserInterface
{
@ -22,7 +21,7 @@ interface Twig_TokenParserInterface
*
* @param $parser A Twig_Parser instance
*/
function setParser(Twig_Parser $parser);
public function setParser(Twig_Parser $parser);
/**
* Parses a token and returns a node.
@ -31,12 +30,12 @@ interface Twig_TokenParserInterface
*
* @return Twig_NodeInterface A Twig_NodeInterface instance
*/
function parse(Twig_Token $token);
public function parse(Twig_Token $token);
/**
* Gets the tag name associated with this token parser.
*
* @param string The tag name
* @return string The tag name
*/
function getTag();
public function getTag();
}