Completed
Push — master ( fbf2a7...00045a )
by Colin
02:48
created

AbstractStringContainerBlock::getStringContent()   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\ContextInterface;
18
use League\CommonMark\Cursor;
19
use League\CommonMark\Util\ArrayCollection;
20
21
abstract class AbstractStringContainerBlock extends AbstractBlock implements StringContainerInterface
22
{
23
    /**
24
     * @var ArrayCollection|string[]
25
     */
26
    protected $strings;
27
28
    /**
29
     * @var string
30
     */
31
    protected $finalStringContents = '';
32
33
    /**
34
     * Constructor
35
     */
36 2040
    public function __construct()
37
    {
38 2040
        $this->strings = new ArrayCollection();
39 2040
    }
40
41
    /**
42
     * @param string $line
43
     */
44 2019
    public function addLine(string $line)
45
    {
46 2019
        $this->strings->add($line);
47 2019
    }
48
49
    /**
50
     * @param ContextInterface $context
51
     * @param Cursor           $cursor
52
     */
53
    abstract public function handleRemainingContents(ContextInterface $context, Cursor $cursor);
54
55 1992
    public function getStringContent(): string
56
    {
57 1992
        return $this->finalStringContents;
58
    }
59
}
60