| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class ItemUnitViewFactory implements ItemUnitViewFactoryInterface |
||
| 11 | { |
||
| 12 | /** @var string */ |
||
| 13 | private $itemUnitViewClass; |
||
| 14 | |||
| 15 | public function __construct(string $itemUnitViewClass) |
||
| 16 | { |
||
| 17 | $this->itemUnitViewClass = $itemUnitViewClass; |
||
| 18 | } |
||
| 19 | |||
| 20 | public function create(OrderItemUnitInterface $itemUnit, string $localeCode): ItemUnitView |
||
| 28 | } |
||
| 29 | } |
||
| 30 |