name = $name; return $this; } /** * Get name * * @return string */ public function getName() { return $this->name; } /** * Set htmlInformation * * @param string $htmlInformation * * @return TravelCountry */ public function setHtmlInformation($htmlInformation) { $this->htmlInformation = $htmlInformation; return $this; } /** * Get htmlInformation * * @return string */ public function getHtmlInformation() { return $this->htmlInformation; } /** * Set entryRequirements * * @param string $entryRequirements * * @return TravelCountry */ public function setEntryRequirements($entryRequirements) { $this->entryRequirements = $entryRequirements; return $this; } /** * Get entryRequirements * * @return string */ public function getEntryRequirements() { return $this->entryRequirements; } /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Set feedbackPage * * @param \AppBundle\Entity\Page $feedbackPage * * @return TravelCountry */ public function setFeedbackPage(\AppBundle\Entity\Page $feedbackPage = null) { $this->feedbackPage = $feedbackPage; return $this; } /** * Get feedbackPage * * @return \AppBundle\Entity\Page */ public function getFeedbackPage() { return $this->feedbackPage; } /** * Constructor */ public function __construct() { $this->programs = new \Doctrine\Common\Collections\ArrayCollection(); } /** * Add program * * @param \AppBundle\Entity\TravelProgram $program * * @return TravelCountry */ public function addProgram(\AppBundle\Entity\TravelProgram $program) { $this->programs[] = $program; return $this; } /** * Remove program * * @param \AppBundle\Entity\TravelProgram $program */ public function removeProgram(\AppBundle\Entity\TravelProgram $program) { $this->programs->removeElement($program); } /** * Get programs * * @return \Doctrine\Common\Collections\Collection */ public function getPrograms() { return $this->programs; } function __toString() { return $this->name; } /** * Add destination * * @param \AppBundle\Entity\TravelDestination $destination * * @return TravelCountry */ public function addDestination(\AppBundle\Entity\TravelDestination $destination) { $this->destinations[] = $destination; return $this; } /** * Remove destination * * @param \AppBundle\Entity\TravelDestination $destination */ public function removeDestination(\AppBundle\Entity\TravelDestination $destination) { $this->destinations->removeElement($destination); } /** * Get destinations * * @return \Doctrine\Common\Collections\Collection */ public function getDestinations() { return $this->destinations; } }