id; } /** * Get country name * * @return string * * @since 1.0.0 */ public function getName() : string { return $this->name; } /** * Get country code * * @return string * * @since 1.0.0 */ public function getCode2() : string { return $this->code2; } /** * Get country code * * @return string * * @since 1.0.0 */ public function getCode3() : string { return $this->code3; } /** * Get country numeric * * @return int * * @since 1.0.0 */ public function getNumeric() : int { return $this->numeric; } /** * Get country subdevision * * @return string * * @since 1.0.0 */ public function getSubdevision() : string { return $this->subdevision; } }