1 | <?php |
||
14 | class XlsSheetNode extends XlsNode |
||
15 | { |
||
16 | /** |
||
17 | * @param Twig_Node_Expression $index |
||
18 | * @param Twig_Node_Expression $properties |
||
19 | * @param Twig_Node $body |
||
20 | * @param int $line |
||
21 | * @param string $tag |
||
22 | */ |
||
23 | public function __construct(Twig_Node_Expression $index, Twig_Node_Expression $properties, Twig_Node $body, $line = 0, $tag = 'xlssheet') |
||
27 | |||
28 | /** |
||
29 | * @param Twig_Compiler $compiler |
||
30 | */ |
||
31 | public function compile(Twig_Compiler $compiler) |
||
49 | |||
50 | /** |
||
51 | * @return string[] |
||
52 | */ |
||
53 | public function getAllowedParents() |
||
59 | |||
60 | /** |
||
61 | * @return bool |
||
62 | */ |
||
63 | public function canContainText() |
||
67 | } |
||
68 |