| Total Complexity | 2 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class ShippingMethodViewFactory implements ShippingMethodViewFactoryInterface |
||
| 12 | { |
||
| 13 | /** @var string */ |
||
| 14 | protected $shippingMethodViewClass; |
||
| 15 | |||
| 16 | public function __construct( |
||
| 17 | string $shippingMethodViewClass |
||
| 18 | ) { |
||
| 19 | $this->shippingMethodViewClass = $shippingMethodViewClass; |
||
| 20 | } |
||
| 21 | |||
| 22 | public function create(ShipmentInterface $shipment, string $locale): ShippingMethodView |
||
| 36 | } |
||
| 37 | } |
||
| 38 |