1 | <?php |
||
14 | class XlsRowNode extends Twig_Node implements SyntaxAwareNodeInterface |
||
15 | { |
||
16 | /** |
||
17 | * @param Twig_Node_Expression $index |
||
18 | * @param Twig_Node $body |
||
19 | * @param int $line |
||
20 | * @param string $tag |
||
21 | */ |
||
22 | public function __construct(Twig_Node_Expression $index, Twig_Node $body, $line = 0, $tag = 'xlsrow') |
||
26 | |||
27 | /** |
||
28 | * @param Twig_Compiler $compiler |
||
29 | */ |
||
30 | public function compile(Twig_Compiler $compiler) |
||
42 | |||
43 | /** |
||
44 | * @return string[] |
||
45 | */ |
||
46 | public function getAllowedParents() |
||
52 | |||
53 | /** |
||
54 | * @return bool |
||
55 | */ |
||
56 | public function canContainText() |
||
60 | } |
||
61 |