diff --git a/src/CartItem.php b/src/CartItem.php index c1605e4..685dc30 100644 --- a/src/CartItem.php +++ b/src/CartItem.php @@ -277,6 +277,7 @@ public function getDiscount($format = true) /** * @param CouponContract $coupon + * * @return $this */ public function addCoupon(CouponContract $coupon) @@ -382,18 +383,12 @@ public function searchForSubItem($data) return $matches; } - /** - * - */ public function disable() { $this->active = false; app('laracart')->update(); } - /** - * - */ public function enable() { $this->active = true;