SetColor($sColor); } /** * @return string */ public function GetColor(): ?string { return $this->sColor; } /** * @param string $sColor * * @return Badge */ public function SetColor(string $sColor): Badge { $this->sColor = $sColor; return $this; } }