ItemRestocked
1<?php
2 3namespace Thunk\Verbs\Examples\Cart\Events; 4 5use Thunk\Verbs\Event; 6use Thunk\Verbs\Examples\Cart\States\ItemState; 7 8class ItemRestocked extends Event 9{10 public ItemState $item;11 12 public int $quantity;13 14 public function apply()15 {16 $this->item->quantity += $this->quantity;17 }18}