Total Complexity | 3 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
19 | #[Package('checkout')] |
||
20 | class MultipleTestPaymentHandler implements SynchronousPaymentHandlerInterface, PreparedPaymentHandlerInterface |
||
21 | { |
||
22 | public function validate( |
||
23 | Cart $cart, |
||
24 | RequestDataBag $requestDataBag, |
||
25 | SalesChannelContext $context |
||
26 | ): Struct { |
||
27 | return new ArrayStruct(); |
||
28 | } |
||
29 | |||
30 | public function capture( |
||
36 | } |
||
37 | |||
38 | public function pay( |
||
45 |