zip = $zip; $this->country = $country; $this->city = $city; $this->street = $street; } /** * @return integer */ public function getId() { return $this->id; } /** * @return string */ public function getCountry() { return $this->country; } /** * @param string $country */ public function setCountry($country) { $this->country = $country; } /** * @return string */ public function getZip() { return $this->zip; } /** * @param string $zip */ public function setZip($zip) { $this->zip = $zip; } /** * @return string */ public function getCity() { return $this->city; } /** * @param string $city */ public function setCity($city) { $this->city = $city; } /** * @return string */ public function getStreet() { return $this->street; } /** * @param string $street */ public function setStreet($street) { $this->street = $street; } }