name1; } /** * Get name1 * * @return string * * @since 1.0.0 */ public function getName2() : string { return $this->name2; } /** * Get name3 * * @return string * * @since 1.0.0 */ public function getName3() : string { return $this->name3; } /** * Get city * * @return string * * @since 1.0.0 */ public function getCity() : string { return $this->city; } /** * Get postal/sip * * @return string * * @since 1.0.0 */ public function getZip() : string { return $this->zip; } /** * Get street * * @return string * * @since 1.0.0 */ public function getStreet() : string { return $this->street; } /** * Get country * * @return string * * @since 1.0.0 */ public function getCountry() : string { return $this->country; } /** * Get phone * * @return string * * @since 1.0.0 */ public function getPhone() : string { return $this->phone; } /** * Get email * * @return string * * @since 1.0.0 */ public function getEmail() : string { return $this->email; } /** * Get fax * * @return string * * @since 1.0.0 */ public function getFax() : string { return $this->fax; } /** * Get website * * @return string * * @since 1.0.0 */ public function getWebsite() : string { return $this->website; } }