X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/f110b8ba20232e0ceeb67390f8e672431868d32d..81c24846e34881b05745a24bd4236eed68a42a69:/Entity/Application.php?ds=sidebyside

diff --git a/Entity/Application.php b/Entity/Application.php
index c157132..2e8cca5 100644
--- a/Entity/Application.php
+++ b/Entity/Application.php
@@ -5,183 +5,223 @@ namespace Rapsys\AirBundle\Entity;
 /**
  * Application
  */
-class Application
-{
-    /**
-     * @var integer
-     */
-    private $id;
-
-    /**
-     * @var \DateTime
-     */
-    private $created;
-
-    /**
-     * @var \DateTime
-     */
-    private $updated;
-
-    /**
-     * @var \Doctrine\Common\Collections\Collection
-     */
-    private $votes;
-
-    /**
-     * @var \Rapsys\AirBundle\Entity\Session
-     */
-    private $session;
-
-    /**
-     * @var \Rapsys\AirBundle\Entity\User
-     */
-    private $user;
-
-    /**
-     * Constructor
-     */
-    public function __construct()
-    {
-        $this->votes = new \Doctrine\Common\Collections\ArrayCollection();
-    }
-
-    /**
-     * Get id
-     *
-     * @return integer
-     */
-    public function getId()
-    {
-        return $this->id;
-    }
-
-    /**
-     * Set created
-     *
-     * @param \DateTime $created
-     *
-     * @return Application
-     */
-    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 Application
-     */
-    public function setUpdated($updated)
-    {
-        $this->updated = $updated;
-
-        return $this;
-    }
-
-    /**
-     * Get updated
-     *
-     * @return \DateTime
-     */
-    public function getUpdated()
-    {
-        return $this->updated;
-    }
-
-    /**
-     * Add vote
-     *
-     * @param \Rapsys\AirBundle\Entity\Vote $vote
-     *
-     * @return Application
-     */
-    public function addVote(\Rapsys\AirBundle\Entity\Vote $vote)
-    {
-        $this->votes[] = $vote;
-
-        return $this;
-    }
-
-    /**
-     * Remove vote
-     *
-     * @param \Rapsys\AirBundle\Entity\Vote $vote
-     */
-    public function removeVote(\Rapsys\AirBundle\Entity\Vote $vote)
-    {
-        $this->votes->removeElement($vote);
-    }
-
-    /**
-     * Get votes
-     *
-     * @return \Doctrine\Common\Collections\Collection
-     */
-    public function getVotes()
-    {
-        return $this->votes;
-    }
-
-    /**
-     * Set session
-     *
-     * @param \Rapsys\AirBundle\Entity\Session $session
-     *
-     * @return Application
-     */
-    public function setSession(\Rapsys\AirBundle\Entity\Session $session = null)
-    {
-        $this->session = $session;
-
-        return $this;
-    }
-
-    /**
-     * Get session
-     *
-     * @return \Rapsys\AirBundle\Entity\Session
-     */
-    public function getSession()
-    {
-        return $this->session;
-    }
-
-    /**
-     * Set user
-     *
-     * @param \Rapsys\AirBundle\Entity\User $user
-     *
-     * @return Application
-     */
-    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 Application {
+	/**
+	 * @var integer
+	 */
+	private $id;
+
+	/**
+	 * @var float
+	 */
+	private $score;
+
+	/**
+	 * @var \DateTime
+	 */
+	private $canceled;
+
+	/**
+	 * @var \DateTime
+	 */
+	private $created;
+
+	/**
+	 * @var \DateTime
+	 */
+	private $updated;
+
+	/**
+	 * @var \Doctrine\Common\Collections\Collection
+	 */
+	private $votes;
+
+	/**
+	 * @var \Rapsys\AirBundle\Entity\Session
+	 */
+	private $session;
+
+	/**
+	 * @var \Rapsys\AirBundle\Entity\User
+	 */
+	private $user;
+
+	/**
+	 * Constructor
+	 */
+	public function __construct() {
+		$this->votes = new \Doctrine\Common\Collections\ArrayCollection();
+	}
+
+	/**
+	 * Get id
+	 *
+	 * @return integer
+	 */
+	public function getId() {
+		return $this->id;
+	}
+
+	/**
+	 * Set score
+	 *
+	 * @param float $score
+	 *
+	 * @return Application
+	 */
+	public function setScore($score) {
+		$this->score = $score;
+
+		return $this;
+	}
+
+	/**
+	 * Get score
+	 *
+	 * @return float
+	 */
+	public function getScore() {
+		return $this->score;
+	}
+
+	/**
+	 * Set canceled
+	 *
+	 * @param \DateTime $canceled
+	 *
+	 * @return Application
+	 */
+	public function setCanceled($canceled) {
+		$this->canceled = $canceled;
+
+		return $this;
+	}
+
+	/**
+	 * Get canceled
+	 *
+	 * @return \DateTime
+	 */
+	public function getCanceled() {
+		return $this->canceled;
+	}
+
+	/**
+	 * Set created
+	 *
+	 * @param \DateTime $created
+	 *
+	 * @return Application
+	 */
+	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 Application
+	 */
+	public function setUpdated($updated) {
+		$this->updated = $updated;
+
+		return $this;
+	}
+
+	/**
+	 * Get updated
+	 *
+	 * @return \DateTime
+	 */
+	public function getUpdated() {
+		return $this->updated;
+	}
+
+	/**
+	 * Add vote
+	 *
+	 * @param \Rapsys\AirBundle\Entity\Vote $vote
+	 *
+	 * @return Application
+	 */
+	public function addVote(\Rapsys\AirBundle\Entity\Vote $vote) {
+		$this->votes[] = $vote;
+
+		return $this;
+	}
+
+	/**
+	 * Remove vote
+	 *
+	 * @param \Rapsys\AirBundle\Entity\Vote $vote
+	 */
+	public function removeVote(\Rapsys\AirBundle\Entity\Vote $vote) {
+		$this->votes->removeElement($vote);
+	}
+
+	/**
+	 * Get votes
+	 *
+	 * @return \Doctrine\Common\Collections\Collection
+	 */
+	public function getVotes() {
+		return $this->votes;
+	}
+
+	/**
+	 * Set session
+	 *
+	 * @param \Rapsys\AirBundle\Entity\Session $session
+	 *
+	 * @return Application
+	 */
+	public function setSession(\Rapsys\AirBundle\Entity\Session $session = null) {
+		$this->session = $session;
+
+		return $this;
+	}
+
+	/**
+	 * Get session
+	 *
+	 * @return \Rapsys\AirBundle\Entity\Session
+	 */
+	public function getSession() {
+		return $this->session;
+	}
+
+	/**
+	 * Set user
+	 *
+	 * @param \Rapsys\AirBundle\Entity\User $user
+	 *
+	 * @return Application
+	 */
+	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;
+	}
 }