Total Complexity | 3 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | class SelfVetRequestId |
||
22 | { |
||
23 | /** |
||
24 | * @var string |
||
25 | */ |
||
26 | private $requestId; |
||
27 | |||
28 | /** |
||
29 | * @var string |
||
30 | */ |
||
31 | private $vettingSecondFactorId; |
||
32 | |||
33 | public function __construct(string $requestId, string $vettingSecondFactorId) |
||
37 | } |
||
38 | |||
39 | public function requestId(): string |
||
40 | { |
||
41 | return $this->requestId; |
||
42 | } |
||
43 | |||
44 | public function vettingSecondFactorId(): string |
||
47 | } |
||
48 | } |
||
49 |