1 | <?php |
||
13 | class XlsCenterNode extends XlsNode |
||
14 | { |
||
15 | /** |
||
16 | * @param Twig_Node $body |
||
17 | * @param int $line |
||
18 | * @param string $tag |
||
19 | */ |
||
20 | public function __construct(Twig_Node $body, $line = 0, $tag = 'xlscenter') |
||
24 | |||
25 | /** |
||
26 | * @param Twig_Compiler $compiler |
||
27 | */ |
||
28 | public function compile(Twig_Compiler $compiler) |
||
38 | |||
39 | /** |
||
40 | * @return string[] |
||
41 | */ |
||
42 | public function getAllowedParents() |
||
49 | |||
50 | /** |
||
51 | * @return bool |
||
52 | */ |
||
53 | public function canContainText() |
||
57 | } |
||
58 |