- /**
- * 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;
- }
-