diff --git a/trunk/app/Resources/views/default/components/header.html.twig b/trunk/app/Resources/views/default/components/header.html.twig index 414cb329..9d4141eb 100644 --- a/trunk/app/Resources/views/default/components/header.html.twig +++ b/trunk/app/Resources/views/default/components/header.html.twig @@ -49,7 +49,7 @@ diff --git a/trunk/src/AppBundle/Entity/TravelProgramDestination.php b/trunk/src/AppBundle/Entity/TravelProgramDestination.php deleted file mode 100644 index debe522d..00000000 --- a/trunk/src/AppBundle/Entity/TravelProgramDestination.php +++ /dev/null @@ -1,103 +0,0 @@ -id; - } - - /** - * Set program - * - * @param \AppBundle\Entity\TravelProgram $program - * - * @return TravelProgramDestination - */ - public function setProgram(\AppBundle\Entity\TravelProgram $program = null) - { - $this->program = $program; - - return $this; - } - - /** - * Get program - * - * @return \AppBundle\Entity\TravelProgram - */ - public function getProgram() - { - return $this->program; - } - - /** - * Set destination - * - * @param \AppBundle\Entity\TravelDestination $destination - * - * @return TravelProgramDestination - */ - public function setDestination(\AppBundle\Entity\TravelDestination $destination = null) - { - $this->destination = $destination; - - return $this; - } - - /** - * Get destination - * - * @return \AppBundle\Entity\TravelDestination - */ - public function getDestination() - { - return $this->destination; - } -} diff --git a/trunk/src/AppBundle/Entity/TravelProgramRelated.php b/trunk/src/AppBundle/Entity/TravelProgramRelated.php deleted file mode 100644 index 0f404b62..00000000 --- a/trunk/src/AppBundle/Entity/TravelProgramRelated.php +++ /dev/null @@ -1,134 +0,0 @@ -description = $description; - - return $this; - } - - /** - * Get description - * - * @return string - */ - public function getDescription() - { - return $this->description; - } - - /** - * Get id - * - * @return integer - */ - public function getId() - { - return $this->id; - } - - /** - * Set program1 - * - * @param \AppBundle\Entity\TravelProgram $program1 - * - * @return TravelProgramRelated - */ - public function setProgram1(\AppBundle\Entity\TravelProgram $program1 = null) - { - $this->program1 = $program1; - - return $this; - } - - /** - * Get program1 - * - * @return \AppBundle\Entity\TravelProgram - */ - public function getProgram1() - { - return $this->program1; - } - - /** - * Set program2 - * - * @param \AppBundle\Entity\TravelProgram $program2 - * - * @return TravelProgramRelated - */ - public function setProgram2(\AppBundle\Entity\TravelProgram $program2 = null) - { - $this->program2 = $program2; - - return $this; - } - - /** - * Get program2 - * - * @return \AppBundle\Entity\TravelProgram - */ - public function getProgram2() - { - return $this->program2; - } -}