Completed
Push — master ( aeeeb2...74d969 )
by Colin
03:28
created

Document::acceptsLines()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
crap 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\Block\Element;
16
17
use League\CommonMark\Cursor;
18
use League\CommonMark\Reference\ReferenceMap;
19
20
class Document extends AbstractBlock
21
{
22
    /***
23
     * @var ReferenceMap
24
     */
25
    protected $referenceMap;
26
27 2043
    public function __construct()
28
    {
29 2043
        $this->setStartLine(1);
30
31 2043
        $this->referenceMap = new ReferenceMap();
32 2043
    }
33
34
    /**
35
     * @return ReferenceMap
36
     */
37 2037
    public function getReferenceMap(): ReferenceMap
38
    {
39 2037
        return $this->referenceMap;
40
    }
41
42
    /**
43
     * Returns true if this block can contain the given block as a child node
44
     *
45
     * @param AbstractBlock $block
46
     *
47
     * @return bool
48
     */
49 2028
    public function canContain(AbstractBlock $block): bool
50
    {
51 2028
        return true;
52
    }
53
54
    /**
55
     * Whether this is a code block
56
     *
57
     * @return bool
58
     */
59 2028
    public function isCode(): bool
60
    {
61 2028
        return false;
62
    }
63
64
    public function matchesNextLine(Cursor $cursor): bool
65
    {
66
        return true;
67
    }
68
}
69