cartItems = $cartItems; return $this; } /** * @return mixed */ public function getCartItems() { return $this->cartItems; } /** * @param mixed $orderId * @return $this */ public function setOrderId($orderId) { $this->orderID = $orderId; return $this; } /** * @return mixed */ public function getOrderId() { return $this->orderID; } /** * @param mixed $returnedDate * @return $this */ public function setReturnedDate($returnedDate) { $this->returnedDate = $this->parseDate($returnedDate); return $this; } /** * @return mixed */ public function getReturnedDate() { return $this->returnedDate; } }