Completed
Push — master ( 83739a...a13ee4 )
by Colin
14s queued 11s
created

HtmlInlineParser::parse()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 10

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 5
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 10
ccs 5
cts 5
cp 1
rs 9.9332
c 0
b 0
f 0
cc 2
nc 2
nop 1
crap 2
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\Inline\Parser;
16
17
use League\CommonMark\Inline\Element\HtmlInline;
18
use League\CommonMark\InlineParserContext;
19
use League\CommonMark\Util\RegexHelper;
20
21
final class HtmlInlineParser implements InlineParserInterface
22
{
23
    /**
24
     * @return string[]
25
     */
26 2427
    public function getCharacters(): array
27
    {
28 2427
        return ['<'];
29
    }
30
31
    /**
32
     * @param InlineParserContext $inlineContext
33
     *
34
     * @return bool
35
     */
36 324
    public function parse(InlineParserContext $inlineContext): bool
37
    {
38 324
        if ($m = $inlineContext->getCursor()->match('/^' . RegexHelper::PARTIAL_HTMLTAG . '/i')) {
39 240
            $inlineContext->getContainer()->appendChild(new HtmlInline($m));
40
41 240
            return true;
42
        }
43
44 87
        return false;
45
    }
46
}
47