Passed
Push — dependabot/github_actions/ride... ( bf7823 )
by
unknown
02:50
created

AbstractBlockContinueParser   A

Complexity

Total Complexity 5

Size/Duplication

Total Lines 23
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 23
ccs 6
cts 6
cp 1
rs 10
c 0
b 0
f 0
wmc 5

5 Methods

Rating   Name   Duplication   Size   Complexity  
A canHaveLazyContinuationLines() 0 3 1
A isContainer() 0 3 1
A canContain() 0 3 1
A addLine() 0 2 1
A closeBlock() 0 2 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
18
/**
19
 * Base class for a block parser
20
 *
21
 * Slightly more convenient to extend from vs. implementing the interface
22
 */
23
abstract class AbstractBlockContinueParser implements BlockContinueParserInterface
24
{
25 626
    public function isContainer(): bool
26
    {
27 626
        return false;
28
    }
29
30 1864
    public function canHaveLazyContinuationLines(): bool
31
    {
32 1864
        return false;
33
    }
34
35 86
    public function canContain(AbstractBlock $childBlock): bool
36
    {
37 86
        return false;
38
    }
39
40
    public function addLine(string $line): void
41
    {
42
    }
43
44
    public function closeBlock(): void
45
    {
46
    }
47
}
48