| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 26 | 2 | public function compile(Compiler $compiler) |
|
| 27 | { |
||
| 28 | $compiler |
||
| 29 | 2 | ->addDebugInfo($this) |
|
| 30 | 2 | ->write("ob_start();\n") |
|
| 31 | 2 | ->subcompile($this->getNode('body')) |
|
| 32 | 2 | ->write('$extension = $this->env->getExtension(\'\\voku\\twig\\MinifyHtmlExtension\');' . "\n") |
|
| 33 | 2 | ->write('echo $extension->compress($this->env, ob_get_clean());' . "\n"); |
|
| 34 | 2 | } |
|
| 35 | } |
||
| 36 |