id; } /** * Set content * * @param string $content * * @return Awnser */ public function setContent($content) { $this->content = $content; return $this; } /** * Get content * * @return string */ public function getContent() { return $this->content; } /** * Set team * * @param \Mmi\Bundle\EnigmaBundle\Entity\Team $team * * @return Awnser */ public function setTeam(\Mmi\Bundle\EnigmaBundle\Entity\Team $team = null) { $this->team = $team; return $this; } /** * Get team * * @return \Mmi\Bundle\EnigmaBundle\Entity\Team */ public function getTeam() { return $this->team; } /** * Set enigma * * @param \Mmi\Bundle\EnigmaBundle\Entity\Enigma $enigma * * @return Awnser */ public function setEnigma(\Mmi\Bundle\EnigmaBundle\Entity\Enigma $enigma = null) { $this->enigma = $enigma; return $this; } /** * Get enigma * * @return \Mmi\Bundle\EnigmaBundle\Entity\Enigma */ public function getEnigma() { return $this->enigma; } /** * Set date * * @param \DateTime $date * * @return Awnser */ public function setDate($date) { $this->date = $date; return $this; } /** * Get date * * @return \DateTime */ public function getDate() { return $this->date; } }