| Total Complexity | 2 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | final class PaymentMethodViewFactory implements PaymentMethodViewFactoryInterface |
||
| 11 | { |
||
| 12 | /** @var string */ |
||
| 13 | private $paymentMethodViewClass; |
||
| 14 | |||
| 15 | public function __construct(string $paymentMethodViewClass) |
||
| 16 | { |
||
| 17 | $this->paymentMethodViewClass = $paymentMethodViewClass; |
||
| 18 | } |
||
| 19 | |||
| 20 | public function create(PaymentMethodInterface $paymentMethod, string $locale): PaymentMethodView |
||
| 31 | } |
||
| 32 | } |
||
| 33 |