diff options
Diffstat (limited to 'inc/Twig/TokenParserInterface.php')
-rw-r--r-- | inc/Twig/TokenParserInterface.php | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/inc/Twig/TokenParserInterface.php b/inc/Twig/TokenParserInterface.php new file mode 100644 index 00000000..bbde7714 --- /dev/null +++ b/inc/Twig/TokenParserInterface.php | |||
@@ -0,0 +1,41 @@ | |||
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 $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 | public function parse(Twig_Token $token); | ||
34 | |||
35 | /** | ||
36 | * Gets the tag name associated with this token parser. | ||
37 | * | ||
38 | * @return string The tag name | ||
39 | */ | ||
40 | public function getTag(); | ||
41 | } | ||