Contao\Module::__get PHP Method

__get() public method

Return an object property
public __get ( string $strKey ) : mixed
$strKey string
return mixed
    public function __get($strKey)
    {
        if (isset($this->arrData[$strKey])) {
            return $this->arrData[$strKey];
        }
        return parent::__get($strKey);
    }