Total Complexity | 4 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
11 | class Result |
||
12 | { |
||
13 | public bool $status = false; |
||
14 | public ?string $data = null; |
||
15 | public ?string $remoteId = null; |
||
16 | |||
17 | 10 | public function __construct(bool $status = false, ?string $data = null, ?string $remoteId = null) |
|
22 | 10 | } |
|
23 | |||
24 | 8 | public function getStatus(): bool |
|
25 | { |
||
26 | 8 | return $this->status; |
|
27 | } |
||
28 | |||
29 | 5 | public function getData(): ?string |
|
30 | { |
||
31 | 5 | return $this->data; |
|
32 | } |
||
33 | |||
34 | 2 | public function getRemoteId(): ?string |
|
37 | } |
||
38 | } |
||
39 |