Passed
Push — 2.0 ( b7ed7b...934f6b )
by Colin
35:11 queued 31:18
created

DocumentBlockParser::tryContinue()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
dl 0
loc 3
ccs 0
cts 2
cp 0
rs 10
c 1
b 0
f 0
cc 1
nc 1
nop 2
crap 2
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\Parser\Block;
15
16
use League\CommonMark\Node\Block\AbstractBlock;
17
use League\CommonMark\Node\Block\Document;
18
use League\CommonMark\Parser\Cursor;
19
use League\CommonMark\Reference\ReferenceMapInterface;
20
21
/**
22
 * Parser implementation which ensures everything is added to the root-level Document
23
 */
24
final class DocumentBlockParser extends AbstractBlockContinueParser
25
{
26
    /** @psalm-readonly */
27
    private Document $document;
28
29 3135
    public function __construct(ReferenceMapInterface $referenceMap)
30
    {
31 3135
        $this->document = new Document($referenceMap);
32 3135
    }
33
34 3135
    public function getBlock(): Document
35
    {
36 3135
        return $this->document;
37
    }
38
39 3123
    public function isContainer(): bool
40
    {
41 3123
        return true;
42
    }
43
44 3123
    public function canContain(AbstractBlock $childBlock): bool
45
    {
46 3123
        return true;
47
    }
48
49
    public function tryContinue(Cursor $cursor, BlockContinueParserInterface $activeBlockParser): ?BlockContinue
50
    {
51
        return BlockContinue::at($cursor);
52
    }
53
}
54