DocumentRenderer::render()   A
last analyzed

Complexity

Conditions 3
Paths 3

Size

Total Lines 9
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 5
CRAP Score 3

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 9
ccs 5
cts 5
cp 1
rs 10
c 0
b 0
f 0
cc 3
nc 3
nop 2
crap 3
1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 * This file is part of the league/commonmark package.
7
 *
8
 * (c) Colin O'Dell <[email protected]>
9
 *
10
 * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js)
11
 *  - (c) John MacFarlane
12
 *
13
 * For the full copyright and license information, please view the LICENSE
14
 * file that was distributed with this source code.
15
 */
16
17
namespace League\CommonMark\Renderer\Block;
18
19
use League\CommonMark\Node\Block\Document;
20
use League\CommonMark\Node\Node;
21
use League\CommonMark\Renderer\ChildNodeRendererInterface;
22
use League\CommonMark\Renderer\NodeRendererInterface;
23
24
final class DocumentRenderer implements NodeRendererInterface
25
{
26
    /**
27
     * @param Document $node
28
     *
29
     * @return string
30
     *
31
     * {@inheritdoc}
32
     *
33
     * @psalm-suppress MoreSpecificImplementedParamType
34
     */
35 2985
    public function render(Node $node, ChildNodeRendererInterface $childRenderer): string
36
    {
37 2985
        if (! ($node instanceof Document)) {
38 3
            throw new \InvalidArgumentException('Incompatible node type: ' . \get_class($node));
39
        }
40
41 2982
        $wholeDoc = $childRenderer->renderNodes($node->children());
42
43 2982
        return $wholeDoc === '' ? '' : $wholeDoc . "\n";
44
    }
45
}
46