X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/884e74545988e2db76cce96ecad09c99bccc2bc0..29dd08c7814df29e7ee9acf1e49d52ec6b7151cc:/Entity/Application.php diff --git a/Entity/Application.php b/Entity/Application.php index c922932..af4d3a9 100644 --- a/Entity/Application.php +++ b/Entity/Application.php @@ -11,20 +11,25 @@ class Application { */ private $id; + /** + * @var float + */ + private $score; + /** * @var \DateTime */ - private $created; + private $canceled; /** * @var \DateTime */ - private $updated; + private $created; /** - * @var \Doctrine\Common\Collections\Collection + * @var \DateTime */ - private $votes; + private $updated; /** * @var \Rapsys\AirBundle\Entity\Session @@ -36,13 +41,6 @@ class Application { */ private $user; - /** - * Constructor - */ - public function __construct() { - $this->votes = new \Doctrine\Common\Collections\ArrayCollection(); - } - /** * Get id * @@ -53,78 +51,91 @@ class Application { } /** - * Set created + * Set score * - * @param \DateTime $created + * @param float $score * * @return Application */ - public function setCreated($created) { - $this->created = $created; + public function setScore($score) { + $this->score = $score; return $this; } /** - * Get created + * Get score * - * @return \DateTime + * @return float */ - public function getCreated() { - return $this->created; + public function getScore() { + return $this->score; } /** - * Set updated + * Set canceled * - * @param \DateTime $updated + * @param \DateTime $canceled * * @return Application */ - public function setUpdated($updated) { - $this->updated = $updated; + public function setCanceled($canceled) { + $this->canceled = $canceled; return $this; } /** - * Get updated + * Get canceled * * @return \DateTime */ - public function getUpdated() { - return $this->updated; + public function getCanceled() { + return $this->canceled; } /** - * Add vote + * Set created * - * @param \Rapsys\AirBundle\Entity\Vote $vote + * @param \DateTime $created * * @return Application */ - public function addVote(\Rapsys\AirBundle\Entity\Vote $vote) { - $this->votes[] = $vote; + public function setCreated($created) { + $this->created = $created; return $this; } /** - * Remove vote + * Get created + * + * @return \DateTime + */ + public function getCreated() { + return $this->created; + } + + /** + * Set updated + * + * @param \DateTime $updated * - * @param \Rapsys\AirBundle\Entity\Vote $vote + * @return Application */ - public function removeVote(\Rapsys\AirBundle\Entity\Vote $vote) { - $this->votes->removeElement($vote); + public function setUpdated($updated) { + $this->updated = $updated; + + return $this; } /** - * Get votes + * Get updated * - * @return \Doctrine\Common\Collections\Collection + * @return \DateTime */ - public function getVotes() { - return $this->votes; + public function getUpdated() { + return $this->updated; } /**