diff --git a/src/Mmi/Bundle/EnigmaBundle/Entity/Awnser.php~ b/src/Mmi/Bundle/EnigmaBundle/Entity/Awnser.php~ deleted file mode 100644 index 2e52034..0000000 --- a/src/Mmi/Bundle/EnigmaBundle/Entity/Awnser.php~ +++ /dev/null @@ -1,158 +0,0 @@ -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; - } -} diff --git a/src/Mmi/Bundle/EnigmaBundle/Entity/Enigma.php~ b/src/Mmi/Bundle/EnigmaBundle/Entity/Enigma.php~ deleted file mode 100644 index a8ce667..0000000 --- a/src/Mmi/Bundle/EnigmaBundle/Entity/Enigma.php~ +++ /dev/null @@ -1,127 +0,0 @@ -id; - } - - /** - * Set title - * - * @param string $title - * - * @return Enigma - */ - public function setTitle($title) - { - $this->title = $title; - - return $this; - } - - /** - * Get title - * - * @return string - */ - public function getTitle() - { - return $this->title; - } - - /** - * Set content - * - * @param string $content - * - * @return Enigma - */ - public function setContent($content) - { - $this->content = $content; - - return $this; - } - - /** - * Get content - * - * @return string - */ - public function getContent() - { - return $this->content; - } - - /** - * Set hash - * - * @param string $hash - * - * @return Enigma - */ - public function setHash($hash) - { - $this->hash = $hash; - - return $this; - } - - /** - * Get hash - * - * @return string - */ - public function getHash() - { - return $this->hash; - } -} diff --git a/src/Mmi/Bundle/EnigmaBundle/Entity/Team.php~ b/src/Mmi/Bundle/EnigmaBundle/Entity/Team.php~ deleted file mode 100644 index e2d0d0a..0000000 --- a/src/Mmi/Bundle/EnigmaBundle/Entity/Team.php~ +++ /dev/null @@ -1,96 +0,0 @@ -id; - } - - /** - * Set username - * - * @param string $username - * - * @return Team - */ - public function setUsername($username) - { - $this->username = $username; - - return $this; - } - - /** - * Get username - * - * @return string - */ - public function getUsername() - { - return $this->username; - } - - /** - * Set password - * - * @param string $password - * - * @return Team - */ - public function setPassword($password) - { - $this->password = $password; - - return $this; - } - - /** - * Get password - * - * @return string - */ - public function getPassword() - { - return $this->password; - } -} diff --git a/src/Mmi/Bundle/EnigmaBundle/Entity/Timer.php~ b/src/Mmi/Bundle/EnigmaBundle/Entity/Timer.php~ deleted file mode 100644 index 5a86b78..0000000 --- a/src/Mmi/Bundle/EnigmaBundle/Entity/Timer.php~ +++ /dev/null @@ -1,125 +0,0 @@ -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; - } -}