From: Raphaƫl Gertz Date: Tue, 23 Feb 2021 23:58:19 +0000 (+0100) Subject: Remove Vote entity X-Git-Url: https://git.rapsys.eu/airbundle/commitdiff_plain/5476fca1c2df33206d15eb584cea82b50325041e Remove Vote entity --- diff --git a/Entity/Vote.php b/Entity/Vote.php deleted file mode 100644 index 9949ba6..0000000 --- a/Entity/Vote.php +++ /dev/null @@ -1,130 +0,0 @@ -id; - } - - /** - * Set created - * - * @param \DateTime $created - * - * @return Vote - */ - public function setCreated($created) { - $this->created = $created; - - return $this; - } - - /** - * Get created - * - * @return \DateTime - */ - public function getCreated() { - return $this->created; - } - - /** - * Set updated - * - * @param \DateTime $updated - * - * @return Vote - */ - public function setUpdated($updated) { - $this->updated = $updated; - - return $this; - } - - /** - * Get updated - * - * @return \DateTime - */ - public function getUpdated() { - return $this->updated; - } - - /** - * Set application - * - * @param \Rapsys\AirBundle\Entity\Application $application - * - * @return Vote - */ - public function setApplication(\Rapsys\AirBundle\Entity\Application $application = null) { - $this->application = $application; - - return $this; - } - - /** - * Get application - * - * @return \Rapsys\AirBundle\Entity\Application - */ - public function getApplication() { - return $this->application; - } - - /** - * Set user - * - * @param \Rapsys\AirBundle\Entity\User $user - * - * @return Vote - */ - public function setUser(\Rapsys\AirBundle\Entity\User $user = null) { - $this->user = $user; - - return $this; - } - - /** - * Get user - * - * @return \Rapsys\AirBundle\Entity\User - */ - public function getUser() { - return $this->user; - } -}