interface Twig_TokenParserInterface in Translation template extractor 6.3
Same name and namespace in other branches
- 7.3 vendor/Twig/TokenParserInterface.php \Twig_TokenParserInterface
Interface implemented by token parsers.
@author Fabien Potencier <fabien@symfony.com>
Hierarchy
- interface \Twig_TokenParserInterface
Expanded class hierarchy of Twig_TokenParserInterface
All classes that implement Twig_TokenParserInterface
File
- vendor/
Twig/ TokenParserInterface.php, line 17
View source
interface Twig_TokenParserInterface {
/**
* Sets the parser associated with this token parser
*
* @param $parser A Twig_Parser instance
*/
public function setParser(Twig_Parser $parser);
/**
* Parses a token and returns a node.
*
* @param Twig_Token $token A Twig_Token instance
*
* @return Twig_NodeInterface A Twig_NodeInterface instance
*
* @throws Twig_Error_Syntax
*/
public function parse(Twig_Token $token);
/**
* Gets the tag name associated with this token parser.
*
* @return string The tag name
*/
public function getTag();
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Twig_TokenParserInterface:: |
public | function | Gets the tag name associated with this token parser. | 16 |
Twig_TokenParserInterface:: |
public | function | Parses a token and returns a node. | 16 |
Twig_TokenParserInterface:: |
public | function | Sets the parser associated with this token parser | 1 |