Total Complexity | 4 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
9 | final class FindPaymentMethodNonce |
||
10 | { |
||
11 | private $nonceString; |
||
12 | |||
13 | private $response; |
||
14 | |||
15 | public function __construct(string $nonceString) |
||
16 | { |
||
17 | $this->nonceString = $nonceString; |
||
18 | } |
||
19 | |||
20 | public function getNonceString(): string |
||
21 | { |
||
22 | return $this->nonceString; |
||
23 | } |
||
24 | |||
25 | public function getResponse(): PaymentMethodNonce |
||
26 | { |
||
27 | return $this->response; |
||
28 | } |
||
29 | |||
30 | public function setResponse(PaymentMethodNonce $response): void |
||
33 | } |
||
34 | } |
||
35 |