1 | <?php |
||
10 | final class PaymentMethodViewFactory implements PaymentMethodViewFactoryInterface |
||
11 | { |
||
12 | /** @var string */ |
||
13 | private $paymentMethodViewClass; |
||
14 | |||
15 | public function __construct(string $paymentMethodViewClass) |
||
19 | |||
20 | /** |
||
21 | * {@inheritdoc} |
||
22 | */ |
||
23 | public function create(PaymentMethodInterface $paymentMethod, string $locale): PaymentMethodView |
||
34 | } |
||
35 |