| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 31 | 2 | public function compile(\Twig_Compiler $compiler) |
|
| 32 | { |
||
| 33 | $compiler |
||
| 34 | 2 | ->addDebugInfo($this) |
|
| 35 | 2 | ->write("ob_start();\n") |
|
| 36 | 2 | ->subcompile($this->getNode('body')) |
|
| 37 | 2 | ->write('$extension = $this->env->getExtension(\'\\voku\\twig\\AntiXssExtension\');' . "\n") |
|
| 38 | 2 | ->write('echo $extension->xss_clean(ob_get_clean());' . "\n"); |
|
| 39 | 2 | } |
|
| 40 | } |
||
| 41 |