/**
  * Removes a item from the cart
  *
  * @param CoreShopCartItem $item
  */
 public function removeItem(CoreShopCartItem $item)
 {
     $item->delete();
 }