Completed
Push — 1.5 ( f40f61...09e907 )
by Colin
02:28
created

FootnoteBackref::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 3
cts 3
cp 1
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
crap 1
1
<?php
2
3
/*
4
 * This file is part of the league/commonmark package.
5
 *
6
 * (c) Colin O'Dell <[email protected]>
7
 * (c) Rezo Zero / Ambroise Maupate
8
 *
9
 * For the full copyright and license information, please view the LICENSE
10
 * file that was distributed with this source code.
11
 */
12
13
declare(strict_types=1);
14
15
namespace League\CommonMark\Extension\Footnote\Node;
16
17
use League\CommonMark\Inline\Element\AbstractInline;
18
use League\CommonMark\Reference\ReferenceInterface;
19
20
/**
21
 * Link from the footnote on the bottom of the document back to the reference
22
 */
23
final class FootnoteBackref extends AbstractInline
24
{
25
    /** @var ReferenceInterface */
26
    private $reference;
27
28 45
    public function __construct(ReferenceInterface $reference)
29
    {
30 45
        $this->reference = $reference;
31 45
    }
32
33 45
    public function getReference(): ReferenceInterface
34
    {
35 45
        return $this->reference;
36
    }
37
}
38