Completed
Push — master ( 6c85d2...15e8d5 )
by Colin
04:57
created

ThematicBreakRenderer::render()   A

Complexity

Conditions 3
Paths 3

Size

Total Lines 13
Code Lines 7

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 7
CRAP Score 3.0176

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 13
ccs 7
cts 8
cp 0.875
rs 9.4286
cc 3
eloc 7
nc 3
nop 3
crap 3.0176
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 (http://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
22
class ThematicBreakRenderer implements BlockRendererInterface
23
{
24
    /**
25
     * @param ThematicBreak            $block
26
     * @param ElementRendererInterface $htmlRenderer
27
     * @param bool                     $inTightList
28
     *
29
     * @return HtmlElement
30
     */
31 84
    public function render(AbstractBlock $block, ElementRendererInterface $htmlRenderer, $inTightList = false)
32
    {
33 84
        if (!($block instanceof ThematicBreak)) {
34 3
            throw new \InvalidArgumentException('Incompatible block type: ' . get_class($block));
35
        }
36
37 81
        $attrs = [];
38 81
        foreach ($block->getData('attributes', []) as $key => $value) {
39
            $attrs[$key] = $htmlRenderer->escape($value, true);
40 81
        }
41
42 81
        return new HtmlElement('hr', $attrs, '', true);
43
    }
44
}
45