TextRenderer::render()   A
last analyzed

Complexity

Conditions 2
Paths 2

Size

Total Lines 7
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 4
CRAP Score 2

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 7
ccs 4
cts 4
cp 1
rs 10
c 0
b 0
f 0
cc 2
nc 2
nop 2
crap 2
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\Inline;
18
19
use League\CommonMark\Node\Inline\Text;
20
use League\CommonMark\Node\Node;
21
use League\CommonMark\Renderer\ChildNodeRendererInterface;
22
use League\CommonMark\Renderer\NodeRendererInterface;
23
use League\CommonMark\Util\Xml;
24
25
final class TextRenderer implements NodeRendererInterface
26
{
27
    /**
28
     * @param Text $node
29
     *
30
     * {@inheritdoc}
31
     *
32
     * @psalm-suppress MoreSpecificImplementedParamType
33
     */
34 2604
    public function render(Node $node, ChildNodeRendererInterface $childRenderer)
35
    {
36 2604
        if (! ($node instanceof Text)) {
37 3
            throw new \InvalidArgumentException('Incompatible node type: ' . \get_class($node));
38
        }
39
40 2601
        return Xml::escape($node->getLiteral());
41
    }
42
}
43