sName = $sName; $this->sType = $sName; $this->oConverter = $oConverter; } public function GetName(): string { return $this->sName; } public function SetName(string $sName): void { $this->sName = $sName; } public function GetType(): string { return $this->sType; } public function SetType(string $sType): void { $this->sType = $sType; } public function GetOutputValue(mixed $oData): mixed { return $this->oConverter->Convert($oData); } }