| 1 | <?php |
||
| 20 | abstract class AbstractPurchaseProcessor implements PurchaseProcessor |
||
|
|
|||
| 21 | { |
||
| 22 | /** |
||
| 23 | * {@inheritdoc} |
||
| 24 | */ |
||
| 25 | public function prepare(ItemHolderInterface $target, PurchaseContext $context) |
||
| 28 | |||
| 29 | /** |
||
| 30 | * {@inheritdoc} |
||
| 31 | */ |
||
| 32 | public function commit(ItemHolderInterface $target, PurchaseContext $context) |
||
| 35 | |||
| 36 | /** |
||
| 37 | * {@inheritdoc} |
||
| 38 | */ |
||
| 39 | public function rollback(ItemHolderInterface $itemHolder, PurchaseContext $context) |
||
| 42 | } |
||
| 43 |