sName; } /** * @param string $sName * * @return $this */ public function SetName(string $sName) { $this->sName = $sName; return $this; } public function GetValue(): ?string { return $this->sValue; } /** * @param string|null $sValue * * @return $this */ public function SetValue(?string $sValue) { $this->sValue = $sValue; return $this; } /** * @return string */ public function GetPlaceholder(): ?string { return $this->sPlaceholder; } /** * @param string $sPlaceholder * * @return $this */ public function SetPlaceholder(string $sPlaceholder) { $this->sPlaceholder = $sPlaceholder; return $this; } }