Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
28 | public function createList(array $syliusPaymentMethods): array |
||
29 | { |
||
30 | $paymentMethodsList = []; |
||
31 | |||
32 | foreach ($syliusPaymentMethods as $syliusPaymentMethod) { |
||
33 | $paymentMethodsList[] = $this->createFromPaymentMethod($syliusPaymentMethod); |
||
34 | } |
||
35 | |||
36 | return $paymentMethodsList; |
||
37 | } |
||
38 | |||
49 |