diff --git a/app/controller/api/store/order/StoreCart.php b/app/controller/api/store/order/StoreCart.php index 8151f24a..7ecf6c5e 100644 --- a/app/controller/api/store/order/StoreCart.php +++ b/app/controller/api/store/order/StoreCart.php @@ -174,9 +174,7 @@ class StoreCart extends BaseController public function cartCount() { $saleType = $this->request->get('sale_type', 1); - dump($this->request->userInfo()); - halt($this->request->uid()); - return app('json')->success($this->repository->getCartCount($this->request->uid()), intval($saleType)); + return app('json')->success($this->repository->getCartCount($this->request->uid(), intval($saleType))); } /**