id; } /** * Set date * * @param \DateTime $date * * @return Timer */ public function setDate($date) { $this->date = $date; return $this; } /** * Get date * * @return \DateTime */ public function getDate() { return $this->date; } /** * Set team * * @param integer $team * * @return Timer */ public function setTeam($team) { $this->team = $team; return $this; } /** * Get team * * @return int */ public function getTeam() { return $this->team; } /** * Set enigma * * @param string $enigma * * @return Timer */ public function setEnigma($enigma) { $this->enigma = $enigma; return $this; } /** * Get enigma * * @return string */ public function getEnigma() { return $this->enigma; } }