1 | <?php |
||
12 | class AntiXssNode extends Twig_Node |
||
13 | { |
||
14 | /** |
||
15 | * AntiXssNode constructor. |
||
16 | * |
||
17 | * @param array $nodes |
||
18 | * @param array $attributes |
||
19 | * @param int $lineno |
||
20 | * @param null $tag |
||
21 | */ |
||
22 | 2 | public function __construct(array $nodes = [], array $attributes = [], $lineno = 0, $tag = null) |
|
26 | |||
27 | /** @noinspection PhpMissingParentCallCommonInspection */ |
||
28 | /** |
||
29 | * @param \Twig_Compiler $compiler |
||
30 | */ |
||
31 | 2 | public function compile(\Twig_Compiler $compiler) |
|
40 | } |
||
41 |