HtmlBlockRenderer   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 30
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 3
eloc 7
c 0
b 0
f 0
dl 0
loc 30
ccs 7
cts 7
cp 1
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A setConfiguration() 0 3 1
A render() 0 9 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\Extension\CommonMark\Renderer\Block;
18
19
use League\CommonMark\Extension\CommonMark\Node\Block\HtmlBlock;
20
use League\CommonMark\Node\Node;
21
use League\CommonMark\Renderer\ChildNodeRendererInterface;
22
use League\CommonMark\Renderer\NodeRendererInterface;
23
use League\CommonMark\Util\HtmlFilter;
24
use League\Config\ConfigurationAwareInterface;
25
use League\Config\ConfigurationInterface;
26
27
final class HtmlBlockRenderer implements NodeRendererInterface, ConfigurationAwareInterface
28
{
29
    /**
30
     * @var ConfigurationInterface
31
     *
32
     * @psalm-readonly-allow-private-mutation
33
     */
34
    private $config;
35
36
    /**
37
     * @param HtmlBlock $node
38
     *
39
     * {@inheritdoc}
40
     *
41
     * @psalm-suppress MoreSpecificImplementedParamType
42
     */
43 186
    public function render(Node $node, ChildNodeRendererInterface $childRenderer)
44
    {
45 186
        if (! ($node instanceof HtmlBlock)) {
46 3
            throw new \InvalidArgumentException('Incompatible node type: ' . \get_class($node));
47
        }
48
49 183
        $htmlInput = $this->config->get('html_input');
50
51 183
        return HtmlFilter::filter($node->getLiteral(), $htmlInput);
52
    }
53
54 3000
    public function setConfiguration(ConfigurationInterface $configuration): void
55
    {
56 3000
        $this->config = $configuration;
57 3000
    }
58
}
59