Completed
Push — 2.0 ( a89474...4b9bf2 )
by Colin
02:19 queued 02:16
created

CodeRenderer   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 29
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 3
eloc 6
dl 0
loc 29
ccs 8
cts 8
cp 1
rs 10
c 0
b 0
f 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
A render() 0 7 1
A getXmlTagName() 0 3 1
A getXmlAttributes() 0 3 1
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\Extension\CommonMark\Renderer\Inline;
18
19
use League\CommonMark\Extension\CommonMark\Node\Inline\Code;
20
use League\CommonMark\Node\Node;
21
use League\CommonMark\Renderer\ChildNodeRendererInterface;
22
use League\CommonMark\Renderer\NodeRendererInterface;
23
use League\CommonMark\Util\HtmlElement;
24
use League\CommonMark\Util\Xml;
25
use League\CommonMark\Xml\XmlNodeRendererInterface;
26
27
final class CodeRenderer implements NodeRendererInterface, XmlNodeRendererInterface
28
{
29
    /**
30
     * @param Code $node
31
     *
32
     * {@inheritDoc}
33
     *
34
     * @psalm-suppress MoreSpecificImplementedParamType
35
     */
36 123
    public function render(Node $node, ChildNodeRendererInterface $childRenderer)
37
    {
38 123
        Code::assertInstanceOf($node);
39
40 120
        $attrs = $node->data->get('attributes');
41
42 120
        return new HtmlElement('code', $attrs, Xml::escape($node->getLiteral()));
43
    }
44
45 9
    public function getXmlTagName(Node $node): string
46
    {
47 9
        return 'code';
48
    }
49
50
    /**
51
     * {@inheritDoc}
52
     */
53 9
    public function getXmlAttributes(Node $node): array
54
    {
55 9
        return [];
56
    }
57
}
58