Link   A
last analyzed

Complexity

Total Complexity 5

Size/Duplication

Total Lines 48
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 2
Bugs 0 Features 1
Metric Value
eloc 11
dl 0
loc 48
ccs 9
cts 9
cp 1
rs 10
c 2
b 0
f 1
wmc 5

5 Methods

Rating   Name   Duplication   Size   Complexity  
A getHref() 0 3 1
A getRels() 0 3 1
A isTemplated() 0 3 1
A __construct() 0 5 1
A getAttributes() 0 3 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