id; } /** * Set createdAt * * @param \DateTime $createdAt * @return Comment */ public function setCreatedAt($createdAt) { $this->createdAt = $createdAt; return $this; } /** * Get createdAt * * @return \DateTime */ public function getCreatedAt() { return $this->createdAt; } /** * Set subject * * @param string $subject * @return Comment */ public function setSubject($subject) { $this->subject = $subject; return $this; } /** * Get subject * * @return string */ public function getSubject() { return $this->subject; } /** * Set hidden * * @param boolean $hidden * @return Comment */ public function setHidden($hidden) { $this->hidden = $hidden; return $this; } /** * Get hidden * * @return boolean */ public function getHidden() { return $this->hidden; } /** * Set content * * @param string $content * @return Comment */ public function setContent($content) { $this->content = $content; return $this; } /** * Get content * * @return string */ public function getContent() { return $this->content; } /** * Set post * * @param GergelyPolonkai\FrontBundle\Entity\Post $post * @return Comment */ public function setPost(\GergelyPolonkai\FrontBundle\Entity\Post $post) { $this->post = $post; return $this; } /** * Get post * * @return GergelyPolonkai\FrontBundle\Entity\Post */ public function getPost() { return $this->post; } /** * Set user * * @param GergelyPolonkai\FrontBundle\Entity\User $user * @return Comment */ public function setUser(\GergelyPolonkai\FrontBundle\Entity\User $user = null) { $this->user = $user; return $this; } /** * Get user * * @return GergelyPolonkai\FrontBundle\Entity\User */ public function getUser() { return $this->user; } }