ListBlock   A
last analyzed

Complexity

Total Complexity 4

Size/Duplication

Total Lines 33
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
eloc 12
dl 0
loc 33
ccs 9
cts 9
cp 1
rs 10
c 0
b 0
f 0
wmc 4

4 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
A setTight() 0 3 1
A getListData() 0 3 1
A isTight() 0 3 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
 * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js)
11
 *  - (c) John MacFarlane
12
 *
13
 * For the full copyright and license information, please view the LICENSE
14
 * file that was distributed with this source code.
15
 */
16
17
namespace League\CommonMark\Extension\CommonMark\Node\Block;
18
19
use League\CommonMark\Node\Block\AbstractBlock;
20
use League\CommonMark\Node\Block\TightBlockInterface;
21
22
class ListBlock extends AbstractBlock implements TightBlockInterface
23
{
24
    public const TYPE_BULLET  = 'bullet';
25
    public const TYPE_ORDERED = 'ordered';
26
27
    public const DELIM_PERIOD = 'period';
28
    public const DELIM_PAREN  = 'paren';
29
30
    protected bool $tight = false; // TODO Make lists tight by default in v3
31
32
    /** @psalm-readonly */
33
    protected ListData $listData;
34
35 298
    public function __construct(ListData $listData)
36
    {
37 298
        parent::__construct();
38
39 298
        $this->listData = $listData;
40
    }
41
42 288
    public function getListData(): ListData
43
    {
44 288
        return $this->listData;
45
    }
46
47 260
    public function isTight(): bool
48
    {
49 260
        return $this->tight;
50
    }
51
52 218
    public function setTight(bool $tight): void
53
    {
54 218
        $this->tight = $tight;
55
    }
56
}
57