Contao\FeedItem::__isset PHP Метод

__isset() публичный Метод

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