TokenParserInterface.php (1009B)
1 <?php 2 3 /* 4 * This file is part of Twig. 5 * 6 * (c) 2010 Fabien Potencier 7 * 8 * For the full copyright and license information, please view the LICENSE 9 * file that was distributed with this source code. 10 */ 11 12 /** 13 * Interface implemented by token parsers. 14 * 15 * @author Fabien Potencier <fabien@symfony.com> 16 */ 17 interface Twig_TokenParserInterface 18 { 19 /** 20 * Sets the parser associated with this token parser. 21 * 22 * @param Twig_Parser $parser A Twig_Parser instance 23 */ 24 public function setParser(Twig_Parser $parser); 25 26 /** 27 * Parses a token and returns a node. 28 * 29 * @param Twig_Token $token A Twig_Token instance 30 * 31 * @return Twig_NodeInterface A Twig_NodeInterface instance 32 * 33 * @throws Twig_Error_Syntax 34 */ 35 public function parse(Twig_Token $token); 36 37 /** 38 * Gets the tag name associated with this token parser. 39 * 40 * @return string The tag name 41 */ 42 public function getTag(); 43 }