name; } /** * Get country code * * @return string * * @since 1.0.0 */ public function getCountryCode() : string { return $this->countryCode; } /** * Get city state * * @return string * * @since 1.0.0 */ public function getState() : string { return $this->state; } /** * Get city postal * * @return int * * @since 1.0.0 */ public function getPostal() : int { return $this->postal; } /** * Get city latitude * * @return float * * @since 1.0.0 */ public function getLat() : float { return $this->lat; } /** * Get city longitude * * @return float * * @since 1.0.0 */ public function getLong() : float { return $this->long; } }