| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 43 | public function createWithGateway(string $gatewayFactory): PaymentMethodInterface |
||
| 44 | { |
||
| 45 | $gatewayConfig = $this->gatewayConfigFactory->createNew(); |
||
| 46 | $gatewayConfig->setFactoryName($gatewayFactory); |
||
| 47 | |||
| 48 | /** @var PaymentMethodInterface $paymentMethod */ |
||
| 49 | $paymentMethod = $this->decoratedFactory->createNew(); |
||
| 50 | $paymentMethod->setGatewayConfig($gatewayConfig); |
||
| 51 | |||
| 52 | return $paymentMethod; |
||
| 53 | } |
||
| 54 | } |
||
| 55 |