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

AbstractStringContainerBlock   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 39
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 39
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\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