HeadingPermalink   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 5
c 0
b 0
f 0
dl 0
loc 15
rs 10
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getSlug() 0 3 1
A __construct() 0 5 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
 * For the full copyright and license information, please view the LICENSE
11
 * file that was distributed with this source code.
12
 */
13
14
namespace League\CommonMark\Extension\HeadingPermalink;
15
16
use League\CommonMark\Node\Inline\AbstractInline;
17
18
/**
19
 * Represents an anchor link within a heading
20
 */
21
final class HeadingPermalink extends AbstractInline
22
{
23
    /** @psalm-readonly */
24
    private string $slug;
25
26
    public function __construct(string $slug)
27
    {
28
        parent::__construct();
29
30
        $this->slug = $slug;
31
    }
32
33
    public function getSlug(): string
34
    {
35
        return $this->slug;
36
    }
37
}
38