@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | public function render(AbstractBlock $block, ElementRendererInterface $htmlRenderer, $inTightList = false) |
22 | 22 | { |
23 | 23 | if (!($block instanceof Table)) { |
24 | - throw new \InvalidArgumentException('Incompatible block type: '.get_class($block)); |
|
24 | + throw new \InvalidArgumentException('Incompatible block type: ' . get_class($block)); |
|
25 | 25 | } |
26 | 26 | |
27 | 27 | $attrs = []; |
@@ -33,6 +33,6 @@ discard block |
||
33 | 33 | |
34 | 34 | $separator = $htmlRenderer->getOption('inner_separator', "\n"); |
35 | 35 | |
36 | - return new HtmlElement('table', $attrs, $separator.$htmlRenderer->renderBlocks($block->children()).$separator); |
|
36 | + return new HtmlElement('table', $attrs, $separator . $htmlRenderer->renderBlocks($block->children()) . $separator); |
|
37 | 37 | } |
38 | 38 | } |