ListData   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 27
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 3
eloc 10
dl 0
loc 27
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A equals() 0 5 3
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
class ListData
20
{
21
    public ?int $start = null;
22
23
    public int $padding = 0;
24
25
    /**
26
     * @psalm-var ListBlock::TYPE_*
27
     * @phpstan-var ListBlock::TYPE_*
28
     */
29
    public string $type;
30
31
    /**
32
     * @psalm-var ListBlock::DELIM_*|null
33
     * @phpstan-var ListBlock::DELIM_*|null
34
     */
35
    public ?string $delimiter = null;
36
37
    public ?string $bulletChar = null;
38
39
    public int $markerOffset;
40
41
    public function equals(ListData $data): bool
42
    {
43
        return $this->type === $data->type &&
44
            $this->delimiter === $data->delimiter &&
45
            $this->bulletChar === $data->bulletChar;
46
    }
47
}
48