| Total Complexity | 3 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 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 | 114 | public function equals(ListData $data): bool |
|
| 48 |