| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | public function create(PaymentMethodInterface $paymentMethod, string $locale): PaymentMethodView |
||
| 24 | { |
||
| 25 | /** @var PaymentMethodView $paymentMethodView */ |
||
| 26 | $paymentMethodView = new $this->paymentMethodViewClass(); |
||
| 27 | |||
| 28 | $paymentMethodView->code = $paymentMethod->getCode(); |
||
| 29 | $paymentMethodView->name = $paymentMethod->getTranslation($locale)->getName(); |
||
| 30 | $paymentMethodView->description = $paymentMethod->getTranslation($locale)->getDescription(); |
||
| 31 | |||
| 32 | return $paymentMethodView; |
||
| 33 | } |
||
| 34 | } |
||
| 35 |