id = $id; return $this; } /** * Gets id. * * @return int */ public function getId() { return $this->id; } /** * Sets name. * * @param string $name * * @return $this */ public function setName($name) { $this->name = $name; return $this; } /** * Gets name. * * @return string */ public function getName() { return $this->name; } /** * Sets country. * * @param Country $country * * @return $this */ public function setCountry(Country $country = null) { $this->country = $country; return $this; } /** * Gets country. * * @return Country */ public function getCountry() { return $this->country; } }