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

OpenBracketParser   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 28
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 6

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 6
dl 0
loc 28
ccs 9
cts 9
cp 1
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getCharacters() 0 4 1
A parse() 0 12 1
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\Delimiter\Delimiter;
18
use League\CommonMark\Inline\Element\Text;
19
use League\CommonMark\InlineParserContext;
20
21
final class OpenBracketParser 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 417
    public function parse(InlineParserContext $inlineContext): bool
37
    {
38 417
        $inlineContext->getCursor()->advanceBy(1);
39 417
        $node = new Text('[', ['delim' => true]);
40 417
        $inlineContext->getContainer()->appendChild($node);
41
42
        // Add entry to stack for this opener
43 417
        $delimiter = new Delimiter('[', 1, $node, true, false, $inlineContext->getCursor()->getPosition());
44 417
        $inlineContext->getDelimiterStack()->push($delimiter);
45
46 417
        return true;
47
    }
48
}
49