goingTo = $goingTo; $this->leavingFrom = $leavingFrom; $this->departure = new \DateTime(); } public function getLeavingFrom() { return $this->leavingFrom; } public function getGoingTo() { return $this->goingTo; } public function getDeparture() { return $this->departure; } public function setDeparture($departure) { $this->departure = $departure; } }