Passed
Push — latest ( 5ac9c7...097d48 )
by Colin
157:29 queued 46:39
created

AbstractBlockContinueParser::parseInlines()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 1
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 0
dl 0
loc 2
ccs 1
cts 1
cp 1
rs 10
c 1
b 0
f 0
cc 1
nc 1
nop 1
crap 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 780
    public function isContainer(): bool
26
    {
27 780
        return false;
28
    }
29
30 2529
    public function canHaveLazyContinuationLines(): bool
31
    {
32 2529
        return false;
33
    }
34
35 93
    public function canContain(AbstractBlock $childBlock): bool
36
    {
37 93
        return false;
38
    }
39
40 315
    public function addLine(string $line): void
41
    {
42 315
    }
43
44 2940
    public function closeBlock(): void
45
    {
46 2940
    }
47
}
48