| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 2.032 |
| Changes | 0 | ||
| 1 | <?php |
||
| 32 | 9 | public function render(AbstractBlock $block, ElementRendererInterface $htmlRenderer, bool $inTightList = false) |
|
| 33 | { |
||
| 34 | 9 | $rendered = $this->htmlBlockRenderer->render($block, $htmlRenderer, $inTightList); |
|
| 35 | |||
| 36 | 9 | if ($rendered === '') { |
|
| 37 | return ''; |
||
| 38 | } |
||
| 39 | |||
| 40 | // Match these types of tags: <title> </title> <title x="sdf"> <title/> <title /> |
||
| 41 | 9 | return preg_replace('/<(\/?(?:title|textarea|style|xmp|iframe|noembed|noframes|script|plaintext)[ \/>])/i', '<$1', $rendered); |
|
|
|
|||
| 42 | } |
||
| 43 | |||
| 54 |