id; } /** * Set idStatus. * * @param int $idStatus * * @return OrderHistory */ public function setIdStatus($idStatus) { $this->idStatus = $idStatus; return $this; } /** * Get idStatus. * * @return int */ public function getIdStatus() { return $this->idStatus; } /** * Set date. * * @param \DateTime $date * * @return OrderHistory */ public function setDate($date) { $this->date = $date; return $this; } /** * Get date. * * @return \DateTime */ public function getDate() { return $this->date; } /** * Set comment. * * @param string $comment * * @return OrderHistory */ public function setComment($comment) { $this->comment = $comment; return $this; } /** * Get comment. * * @return string */ public function getComment() { return $this->comment; } /** * Set notified. * * @param bool $notified * * @return OrderHistory */ public function setNotified($notified) { $this->notified = $notified; return $this; } /** * Get notified. * * @return bool */ public function getNotified() { return $this->notified; } /** * Set idOrder. * * @return OrderHistory */ public function setIdOrder(?Order $idOrder = null) { $this->idOrder = $idOrder; return $this; } /** * Get idOrder. * * @return \KupShop\OrderingBundle\Entity\Order */ public function getIdOrder() { return $this->idOrder; } }