| Total Complexity | 2 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | final class ShipmentViewFactory implements ShipmentViewFactoryInterface |
||
| 12 | { |
||
| 13 | /** @var ShippingMethodViewFactoryInterface */ |
||
| 14 | private $shippingMethodViewFactory; |
||
| 15 | |||
| 16 | /** @var string */ |
||
| 17 | private $shipmentViewClass; |
||
| 18 | |||
| 19 | public function __construct( |
||
| 25 | } |
||
| 26 | |||
| 27 | public function create(ShipmentInterface $shipment, string $locale): ShipmentView |
||
| 40 |