| 1 | <?php |
||
| 24 | class OrderUpdateProcessor extends AbstractPurchaseProcessor |
||
| 25 | { |
||
| 26 | /** |
||
| 27 | * @var ShoppingService |
||
| 28 | */ |
||
| 29 | private $shoppingService; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * OrderUpdateProcessor constructor. |
||
| 33 | * |
||
| 34 | * @param ShoppingService $shoppingService |
||
| 35 | */ |
||
| 36 | 59 | public function __construct(ShoppingService $shoppingService) |
|
| 40 | |||
| 41 | 6 | public function commit(ItemHolderInterface $target, PurchaseContext $context) |
|
| 48 | } |
||
| 49 |