-
Notifications
You must be signed in to change notification settings - Fork 119
/
Copy pathRelation.php
87 lines (71 loc) · 1.7 KB
/
Relation.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<?php
declare(strict_types=1);
namespace Hateoas\Configuration;
use JMS\Serializer\Expression\Expression;
class Relation
{
/**
* The link "rel" attribute
*
* @var string
*/
private $name;
/**
* @var string|Route|Expression|null
*/
private $href;
/**
* @var string[]|Expression[]
*/
private $attributes;
/**
* @var Embedded|null
*/
private $embedded;
/**
* @var Exclusion|null
*/
private $exclusion;
/**
* @param string|Expression $name
* @param string|Route $href
* @param Embedded|string|mixed $embedded
*/
public function __construct(string $name, $href = null, $embedded = null, array $attributes = [], ?Exclusion $exclusion = null)
{
if (null !== $embedded && !$embedded instanceof Embedded) {
$embedded = new Embedded($embedded);
}
if (null === !$href && null === $embedded) {
throw new \InvalidArgumentException('$href and $embedded cannot be both null.');
}
$this->name = $name;
$this->href = $href;
$this->embedded = $embedded;
$this->attributes = $attributes;
$this->exclusion = $exclusion;
}
public function getName(): string
{
return $this->name;
}
/**
* @return Route|string|null
*/
public function getHref()
{
return $this->href;
}
public function getAttributes(): array
{
return $this->attributes;
}
public function getEmbedded(): ?Embedded
{
return $this->embedded;
}
public function getExclusion(): ?Exclusion
{
return $this->exclusion;
}
}