country_id = $country_id; $this->name = $name; $this->short_code = $short_code; $this->symbol = $symbol; $this->selling = $selling; } /** * @return int */ public function getCountryId(): ?int { return $this->country_id; } /** * @return string */ public function getName(): ?string { return $this->name; } /** * @return string */ public function getShortCode(): ?string { return $this->short_code; } /** * @return string */ public function getSymbol(): ?string { return $this->symbol; } /** * @return float */ public function getSelling(): ?float { return $this->selling; } }