Total Complexity | 4 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class RelatedItem |
||
8 | { |
||
9 | /** @var string */ |
||
10 | private $uuid; |
||
11 | |||
12 | /** @var string */ |
||
13 | private $rfcEmitter; |
||
14 | |||
15 | /** @var string */ |
||
16 | private $rfcReceiver; |
||
17 | |||
18 | 2 | public function __construct(string $uuid, string $rfcEmitter, string $rfcReceiver) |
|
19 | { |
||
20 | 2 | $this->uuid = $uuid; |
|
21 | 2 | $this->rfcEmitter = $rfcEmitter; |
|
22 | 2 | $this->rfcReceiver = $rfcReceiver; |
|
23 | 2 | } |
|
24 | |||
25 | 1 | public function uuid(): string |
|
28 | } |
||
29 | |||
30 | 1 | public function rfcEmitter(): string |
|
33 | } |
||
34 | |||
35 | 1 | public function rfcReceiver(): string |
|
38 | } |
||
39 | } |
||
40 |