X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/f110b8ba20232e0ceeb67390f8e672431868d32d..5353ab3771f178229a0292053081c9606bbfab8a:/Entity/Vote.php?ds=sidebyside

diff --git a/Entity/Vote.php b/Entity/Vote.php
index 7b2fb53..9949ba6 100644
--- a/Entity/Vote.php
+++ b/Entity/Vote.php
@@ -5,137 +5,126 @@ namespace Rapsys\AirBundle\Entity;
 /**
  * Vote
  */
-class Vote
-{
-    /**
-     * @var integer
-     */
-    private $id;
-
-    /**
-     * @var \DateTime
-     */
-    private $created;
-
-    /**
-     * @var \DateTime
-     */
-    private $updated;
-
-    /**
-     * @var \Rapsys\AirBundle\Entity\Application
-     */
-    private $application;
-
-    /**
-     * @var \Rapsys\AirBundle\Entity\User
-     */
-    private $user;
-
-
-    /**
-     * Get id
-     *
-     * @return integer
-     */
-    public function getId()
-    {
-        return $this->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;
-    }
+class Vote {
+	/**
+	 * @var integer
+	 */
+	private $id;
+
+	/**
+	 * @var \DateTime
+	 */
+	private $created;
+
+	/**
+	 * @var \DateTime
+	 */
+	private $updated;
+
+	/**
+	 * @var \Rapsys\AirBundle\Entity\Application
+	 */
+	private $application;
+
+	/**
+	 * @var \Rapsys\AirBundle\Entity\User
+	 */
+	private $user;
+
+	/**
+	 * Get id
+	 *
+	 * @return integer
+	 */
+	public function getId() {
+		return $this->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;
+	}
 }