Completed
Push — master ( 235985...1f7999 )
by Colin
01:38 queued 10s
created

Attributes::getTarget()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
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) 2015 Martin Hasoň <[email protected]>
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\Attributes\Node;
16
17
use League\CommonMark\Node\Block\AbstractBlock;
18
19
final class Attributes extends AbstractBlock
20
{
21
    public const TARGET_PARENT   = 0;
22
    public const TARGET_PREVIOUS = 1;
23
    public const TARGET_NEXT     = 2;
24
25
    /** @var array<string, mixed> */
26
    private $attributes;
27
28
    /** @var int */
29
    private $target = self::TARGET_NEXT;
30
31
    /**
32
     * @param array<string, mixed> $attributes
33
     */
34 15
    public function __construct(array $attributes)
35
    {
36 15
        $this->attributes = $attributes;
37 15
    }
38
39
    /**
40
     * @return array<string, mixed>
0 ignored issues
show
Documentation introduced by
The doc-type array<string, could not be parsed: Expected ">" at position 5, but found "end of type". (view supported doc-types)

This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.

Loading history...
41
     */
42 15
    public function getAttributes(): array
43
    {
44 15
        return $this->attributes;
45
    }
46
47
    /**
48
     * @param array<string, mixed> $attributes
49
     */
50 3
    public function setAttributes(array $attributes): void
51
    {
52 3
        $this->attributes = $attributes;
53 3
    }
54
55 15
    public function getTarget(): int
56
    {
57 15
        return $this->target;
58
    }
59
60 12
    public function setTarget(int $target): void
61
    {
62 12
        $this->target = $target;
63 12
    }
64
}
65