| 1 | <?php |
||
| 21 | class ValidatableEmptyProcessor extends ValidatableItemProcessor |
||
| 22 | { |
||
| 23 | protected function validate(ItemInterface $item, PurchaseContext $context) |
||
| 24 | { |
||
| 25 | $error = false; |
||
| 26 | if ($error) { |
||
| 27 | throw new InvalidItemException('ValidatableEmptyProcessorのエラーです'); |
||
| 28 | } |
||
| 29 | } |
||
| 30 | |||
| 31 | protected function handle(ItemInterface $item, PurchaseContext $context) |
||
| 32 | { |
||
| 33 | $item->setQuantity(100); |
||
| 34 | } |
||
| 35 | } |
||
| 36 |