Passed
Push — 2.0 ( a26734...cf2261 )
by Colin
02:22
created

FencedCodeStartParser   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 4
eloc 9
c 1
b 0
f 0
dl 0
loc 18
ccs 9
cts 9
cp 1
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A tryStart() 0 16 4
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
21
final class FencedCodeStartParser implements BlockStartParserInterface
22
{
23 1420
    public function tryStart(Cursor $cursor, MarkdownParserStateInterface $parserState): ?BlockStart
24
    {
25 1420
        if ($cursor->isIndented() || ! \in_array($cursor->getNextNonSpaceCharacter(), ['`', '~'], true)) {
26 1298
            return BlockStart::none();
27
        }
28
29 140
        $indent = $cursor->getIndent();
30 140
        $fence  = $cursor->match('/^[ \t]*(?:`{3,}(?!.*`)|~{3,})/');
31 140
        if ($fence === null) {
32 64
            return BlockStart::none();
33
        }
34
35
        // fenced code block
36 76
        $fence = \ltrim($fence, " \t");
37
38 76
        return BlockStart::of(new FencedCodeParser(\strlen($fence), $fence[0], $indent))->at($cursor);
39
    }
40
}
41