| Total Complexity | 2 | 
| Total Lines | 28 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 12 | final class PaymentViewFactory implements PaymentViewFactoryInterface  | 
            ||
| 13 | { | 
            ||
| 14 | /** @var PaymentMethodViewFactoryInterface */  | 
            ||
| 15 | private $paymentMethodViewFactory;  | 
            ||
| 16 | |||
| 17 | /** @var string */  | 
            ||
| 18 | private $paymentViewClass;  | 
            ||
| 19 | |||
| 20 | public function __construct(  | 
            ||
| 26 | }  | 
            ||
| 27 | |||
| 28 | public function create(PaymentInterface $payment, string $locale): PaymentView  | 
            ||
| 42 |