id = $id; return $this; } /** * Gets id. * * @return int */ public function getId() { return $this->id; } /** * Sets person. * * @param Person $person * * @return $this */ public function setPerson(Person $person) { $this->person = $person; return $this; } /** * Gets person. * * @return Person */ public function getPerson() { return $this->person; } /** * Sets date. * * @param \DateTime $date * * @return $this */ public function setDate(\DateTime $date = null) { $this->date = $date; return $this; } /** * Gets date. * * @return \DateTime */ public function getDate() { return $this->date; } /** * Sets mention. * * @param string $mention * * @return $this */ public function setMention($mention) { $this->mention = $mention; return $this; } /** * Gets mention. * * @return string */ public function getMention() { return $this->mention; } /** * Sets establishment. * * @param string $establishment * * @return $this */ public function setEstablishment($establishment) { $this->establishment = $establishment; return $this; } /** * Gets establishment. * * @return string */ public function getEstablishment() { return $this->establishment; } /** * Sets city. * * @param string $city * * @return $this */ public function setCity($city) { $this->city = $city; return $this; } /** * Gets city. * * @return string */ public function getCity() { return $this->city; } /** * Set diploma * * @param string $diploma * * @return Qualification */ public function setDiploma($diploma) { $this->diploma = $diploma; return $this; } /** * Get diploma * * @return string */ public function getDiploma() { return $this->diploma; } }