Contao\Module::__get PHP 메소드

__get() 공개 메소드

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