name = $name; $this->short_code = $short_code; $this->symbol = $symbol; } /** * @return string */ public function getName(): string { return $this->name; } /** * @return string */ public function getShortCode(): string { return $this->short_code; } /** * @return null|string */ public function getSymbol(): ?string { return $this->symbol; } }