Contao\Feed::__isset PHP Method

__isset() public method

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