aData = array(); $this->bLocal = $bLocal; } public function InitData(array $aData) : self { $this->aData = $aData; return $this; } public function DataAsArray() : array { return $this->aData; } public function IsLocal() : bool { return $this->bLocal; } /** * @param mixed $mDefValue = null * * @return mixed */ public function GetConf(string $sName, $mDefValue = null) { return isset($this->aData[$sName]) ? $this->aData[$sName] : $mDefValue; } /** * @param mixed $mValue */ public function SetConf(string $sName, $mValue) : void { $this->aData[$sName] = $mValue; } }