sLabel = $sLabel; $this->oInput = $oInput; } /** * @return UIBlock */ public function GetInput() { return $this->oInput; } /** * @param \Combodo\iTop\Application\UI\Base\UIBlock $oInput * * @return $this */ public function SetInput(UIBlock $oInput) { $this->oInput = $oInput; return $this; } /** * @return string */ public function GetLabel(): string { return $this->sLabel; } /** * @param string $sLabel * * @return InputWithLabel */ public function SetLabel(string $sLabel): InputWithLabel { $this->sLabel = $sLabel; return $this; } }