Total Complexity | 5 |
Total Lines | 40 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class GetSatStatusCommand |
||
8 | { |
||
9 | /** @var string */ |
||
10 | private $rfcIssuer; |
||
11 | |||
12 | /** @var string */ |
||
13 | private $rfcRecipient; |
||
14 | |||
15 | /** @var string */ |
||
16 | private $uuid; |
||
17 | |||
18 | /** @var string */ |
||
19 | private $total; |
||
20 | |||
21 | 7 | public function __construct(string $rfcIssuer, string $rfcRecipient, string $uuid, string $total) |
|
22 | { |
||
23 | 7 | $this->rfcIssuer = $rfcIssuer; |
|
24 | 7 | $this->rfcRecipient = $rfcRecipient; |
|
25 | 7 | $this->uuid = $uuid; |
|
26 | 7 | $this->total = $total; |
|
27 | } |
||
28 | |||
29 | 7 | public function rfcIssuer(): string |
|
30 | { |
||
31 | 7 | return $this->rfcIssuer; |
|
32 | } |
||
33 | |||
34 | 7 | public function rfcRecipient(): string |
|
37 | } |
||
38 | |||
39 | 7 | public function uuid(): string |
|
40 | { |
||
41 | 7 | return $this->uuid; |
|
42 | } |
||
43 | |||
44 | 7 | public function total(): string |
|
47 | } |
||
48 | } |
||
49 |