Total Complexity | 4 |
Total Lines | 62 |
Duplicated Lines | 0 % |
Coverage | 96% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types = 1); |
||
10 | class RefundPaymentRequest |
||
11 | { |
||
12 | |||
13 | /** @var string */ |
||
14 | private $merchantId; |
||
15 | |||
16 | /** @var string */ |
||
17 | private $payId; |
||
18 | |||
19 | /** @var int|null */ |
||
20 | private $amount; |
||
21 | |||
22 | 2 | public function __construct( |
|
33 | 2 | } |
|
34 | |||
35 | 1 | public function send(ApiClient $apiClient): PaymentResponse |
|
76 |