ThematicBreakStartParser   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 3
eloc 8
dl 0
loc 17
ccs 8
cts 8
cp 1
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A tryStart() 0 15 3
1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 * This file is part of the league/commonmark package.
7
 *
8
 * (c) Colin O'Dell <[email protected]>
9
 *
10
 * For the full copyright and license information, please view the LICENSE
11
 * file that was distributed with this source code.
12
 */
13
14
namespace League\CommonMark\Extension\CommonMark\Parser\Block;
15
16
use League\CommonMark\Parser\Block\BlockStart;
17
use League\CommonMark\Parser\Block\BlockStartParserInterface;
18
use League\CommonMark\Parser\Cursor;
19
use League\CommonMark\Parser\MarkdownParserStateInterface;
20
use League\CommonMark\Util\RegexHelper;
21
22
final class ThematicBreakStartParser implements BlockStartParserInterface
23
{
24 1372
    public function tryStart(Cursor $cursor, MarkdownParserStateInterface $parserState): ?BlockStart
25
    {
26 1372
        if ($cursor->isIndented()) {
27 142
            return BlockStart::none();
28
        }
29
30 1296
        $match = RegexHelper::matchAt(RegexHelper::REGEX_THEMATIC_BREAK, $cursor->getLine(), $cursor->getNextNonSpacePosition());
31 1296
        if ($match === null) {
32 1244
            return BlockStart::none();
33
        }
34
35
        // Advance to the end of the string, consuming the entire line (of the thematic break)
36 74
        $cursor->advanceToEnd();
37
38 74
        return BlockStart::of(new ThematicBreakParser())->at($cursor);
39
    }
40
}
41