Completed
Push — master ( 0b0b24...54ff37 )
by Colin
02:37
created

AbstractStringContainerBlock   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 32
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 2

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 3
lcom 1
cbo 2
dl 0
loc 32
ccs 8
cts 8
cp 1
rs 10
c 0
b 0
f 0

4 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
A addLine() 0 4 1
handleRemainingContents() 0 1 ?
A getStringContent() 0 4 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\Node\Block;
16
17
use League\CommonMark\Parser\ContextInterface;
18
use League\CommonMark\Parser\Cursor;
19
use League\CommonMark\Util\ArrayCollection;
20
21
/**
22
 * @method children() AbstractInline[]
23
 */
24
abstract class AbstractStringContainerBlock extends AbstractBlock implements StringContainerInterface
25
{
26
    /**
27
     * @var ArrayCollection<int, string>
28
     */
29
    protected $strings;
30
31
    /**
32
     * @var string
33
     */
34
    protected $finalStringContents = '';
35
36
    /**
37
     * Constructor
38
     */
39 2634
    public function __construct()
40
    {
41 2634
        $this->strings = new ArrayCollection();
42 2634
    }
43
44 2526
    public function addLine(string $line): void
45
    {
46 2526
        $this->strings[] = $line;
47 2526
    }
48
49
    abstract public function handleRemainingContents(ContextInterface $context, Cursor $cursor): void;
50
51 2460
    public function getStringContent(): string
52
    {
53 2460
        return $this->finalStringContents;
54
    }
55
}
56