| Total Complexity | 2 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 24 | final class FootnoteBackref extends AbstractInline implements ReferenceableInterface |
||
| 25 | { |
||
| 26 | /** |
||
| 27 | * @var ReferenceInterface |
||
| 28 | * |
||
| 29 | * @psalm-readonly |
||
| 30 | */ |
||
| 31 | private $reference; |
||
| 32 | |||
| 33 | 105 | public function __construct(ReferenceInterface $reference) |
|
| 34 | { |
||
| 35 | 105 | parent::__construct(); |
|
| 36 | |||
| 37 | 105 | $this->reference = $reference; |
|
| 38 | 105 | } |
|
| 39 | |||
| 40 | 105 | public function getReference(): ReferenceInterface |
|
| 43 | } |
||
| 44 | } |
||
| 45 |