Completed
Push — master ( 7a0a03...73b89e )
by Colin
02:28
created

ParagraphRenderer   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 24
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 3

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 3
lcom 0
cbo 3
dl 0
loc 24
ccs 7
cts 7
cp 1
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A render() 0 14 3
1
<?php
2
3
/*
4
 * This file is part of the league/commonmark package.
5
 *
6
 * (c) Colin O'Dell <[email protected]>
7
 *
8
 * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js)
9
 *  - (c) John MacFarlane
10
 *
11
 * For the full copyright and license information, please view the LICENSE
12
 * file that was distributed with this source code.
13
 */
14
15
namespace League\CommonMark\Renderer\Block;
16
17
use League\CommonMark\Node\Block\AbstractBlock;
18
use League\CommonMark\Node\Block\Paragraph;
19
use League\CommonMark\Renderer\NodeRendererInterface;
20
use League\CommonMark\Util\HtmlElement;
21
22
final class ParagraphRenderer implements BlockRendererInterface
23
{
24
    /**
25
     * @param Paragraph             $block
26
     * @param NodeRendererInterface $htmlRenderer
27
     * @param bool                  $inTightList
28
     *
29
     * @return HtmlElement|string
30
     */
31 2028
    public function render(AbstractBlock $block, NodeRendererInterface $htmlRenderer, bool $inTightList = false)
32
    {
33 2028
        if (!($block instanceof Paragraph)) {
34 3
            throw new \InvalidArgumentException('Incompatible block type: ' . \get_class($block));
35
        }
36
37 2025
        if ($inTightList) {
38 165
            return $htmlRenderer->renderInlines($block->children());
39
        }
40
41 1908
        $attrs = $block->getData('attributes', []);
42
43 1908
        return new HtmlElement('p', $attrs, $htmlRenderer->renderInlines($block->children()));
44
    }
45
}
46