Contao\Module::__isset PHP Method

__isset() public method

Check whether a property is set
public __isset ( string $strKey ) : boolean
$strKey string
return boolean
    public function __isset($strKey)
    {
        return isset($this->arrData[$strKey]);
    }