Completed
Push — master ( b06b97...f73407 )
by Colin
16s
created

ThematicBreakRenderer::render()   A

Complexity

Conditions 3
Paths 3

Size

Total Lines 13

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 6
CRAP Score 3.0261

Importance

Changes 0
Metric Value
dl 0
loc 13
ccs 6
cts 7
cp 0.8571
rs 9.8333
c 0
b 0
f 0
cc 3
nc 3
nop 3
crap 3.0261
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\Block\Renderer;
16
17
use League\CommonMark\Block\Element\AbstractBlock;
18
use League\CommonMark\Block\Element\ThematicBreak;
19
use League\CommonMark\ElementRendererInterface;
20
use League\CommonMark\HtmlElement;
21
use League\CommonMark\Util\Xml;
22
23
class ThematicBreakRenderer implements BlockRendererInterface
24
{
25
    /**
26
     * @param ThematicBreak            $block
27
     * @param ElementRendererInterface $htmlRenderer
28
     * @param bool                     $inTightList
29
     *
30
     * @return HtmlElement
31
     */
32 90
    public function render(AbstractBlock $block, ElementRendererInterface $htmlRenderer, bool $inTightList = false)
33
    {
34 90
        if (!($block instanceof ThematicBreak)) {
35 3
            throw new \InvalidArgumentException('Incompatible block type: ' . get_class($block));
36
        }
37
38 87
        $attrs = [];
39 87
        foreach ($block->getData('attributes', []) as $key => $value) {
40
            $attrs[$key] = Xml::escape($value, true);
41
        }
42
43 87
        return new HtmlElement('hr', $attrs, '', true);
44
    }
45
}
46