Conditions | 2 |
Paths | 2 |
Total Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
30 | public function evaluate(RenderingContextInterface $renderingContext) |
||
31 | { |
||
32 | if ($this->getArguments()['escape'] ?? true) { |
||
33 | return (new HtmlspecialcharsViewHelper())->setChildren($this->getChildren())->evaluate($renderingContext); |
||
34 | } |
||
35 | return $this->evaluateChildren($renderingContext); |
||
36 | } |
||
37 | |||
43 |