| Conditions | 3 |
| Paths | 3 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php |
||
| 30 | 2487 | public function render(AbstractBlock $block, ElementRendererInterface $htmlRenderer, bool $inTightList = false) |
|
| 31 | { |
||
| 32 | 2487 | if (!($block instanceof Document)) { |
|
| 33 | 3 | throw new \InvalidArgumentException('Incompatible block type: ' . \get_class($block)); |
|
| 34 | } |
||
| 35 | |||
| 36 | 2484 | $wholeDoc = $htmlRenderer->renderBlocks($block->children()); |
|
| 37 | |||
| 38 | 2484 | return $wholeDoc === '' ? '' : $wholeDoc . "\n"; |
|
| 39 | } |
||
| 40 | } |
||
| 41 |