1 | <?php |
||
11 | class OrderCodePurchaseProcessor implements PurchaseProcessor |
||
|
|||
12 | { |
||
13 | |||
14 | private $orderNoFormat; |
||
15 | |||
16 | private $entityManager; |
||
17 | |||
18 | public function __construct(EntityManager $entityManager, $orderNoFormat) |
||
24 | |||
25 | /** |
||
26 | * {@inheritdoc} |
||
27 | */ |
||
28 | public function process(ItemHolderInterface $itemHolder, PurchaseContext $context) |
||
66 | } |