Total Complexity | 2 |
Total Lines | 46 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php declare(strict_types = 1); |
||
11 | class OneClickEchoRequest |
||
12 | { |
||
13 | |||
14 | /** @var string */ |
||
15 | private $merchantId; |
||
16 | |||
17 | /** @var string */ |
||
18 | private $origPayId; |
||
19 | |||
20 | 2 | public function __construct(string $merchantId, string $origPayId) |
|
24 | 2 | } |
|
25 | |||
26 | 1 | public function send(ApiClient $apiClient): PaymentResponse |
|
61 |