Link::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 2
Bugs 0 Features 1
Metric Value
cc 1
eloc 3
nc 1
nop 3
dl 0
loc 5
ccs 2
cts 2
cp 1
crap 1
rs 10
c 2
b 0
f 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Chubbyphp\Serialization\Link;
6
7
use Psr\Link\LinkInterface;
8
9
final class Link implements LinkInterface
10
{
11
    /**
12
     * @var string
13
     */
14
    private $href;
15
16
    /**
17
     * @var string[]
18
     */
19
    private $rels;
20
21
    /**
22
     * @var array
23
     */
24
    private $attributes;
25
26
    /**
27
     * @param string[] $rels
28
     */
29
    public function __construct(string $href, array $rels, array $attributes)
30
    {
31 2
        $this->href = $href;
32
        $this->rels = $rels;
33 2
        $this->attributes = $attributes;
34 2
    }
35 2
36 2
    public function getHref(): string
37
    {
38
        return $this->href;
39
    }
40
41 2
    public function isTemplated(): bool
42
    {
43 2
        return false !== strpos($this->href, '{');
44
    }
45
46
    /**
47
     * @return string[]
48
     */
49 2
    public function getRels(): array
50
    {
51 2
        return $this->rels;
52
    }
53
54
    public function getAttributes(): array
55
    {
56
        return $this->attributes;
57 2
    }
58
}
59