DocumentBlockParser   A
last analyzed

Complexity

Total Complexity 5

Size/Duplication

Total Lines 35
Duplicated Lines 0 %

Test Coverage

Coverage 81.82%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 5
eloc 7
dl 0
loc 35
ccs 9
cts 11
cp 0.8182
rs 10
c 1
b 0
f 0

5 Methods

Rating   Name   Duplication   Size   Complexity  
A canContain() 0 3 1
A __construct() 0 3 1
A tryContinue() 0 3 1
A getBlock() 0 3 1
A isContainer() 0 3 1
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
    /**
27
     * @var Document
28
     *
29
     * @psalm-readonly
30
     */
31
    private $document;
32
33 2994
    public function __construct(ReferenceMapInterface $referenceMap)
34
    {
35 2994
        $this->document = new Document($referenceMap);
36 2994
    }
37
38
    /**
39
     * @return Document
40
     */
41 2994
    public function getBlock(): AbstractBlock
42
    {
43 2994
        return $this->document;
44
    }
45
46 2982
    public function isContainer(): bool
47
    {
48 2982
        return true;
49
    }
50
51 2982
    public function canContain(AbstractBlock $childBlock): bool
52
    {
53 2982
        return true;
54
    }
55
56
    public function tryContinue(Cursor $cursor, BlockContinueParserInterface $activeBlockParser): ?BlockContinue
57
    {
58
        return BlockContinue::at($cursor);
59
    }
60
}
61