/** * @param AddToCart $command * * @throws \Exception */ public function handle(AddToCart $command) { $product = $this->products->getBySku(new SKU($command->sku())); $cart = $this->carts->getById(new CartId($command->cartId())); $cart->add($product, $command->quantity()); }