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

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

Check whether a key is set
Устаревший: Deprecated since Contao 4.0, to be removed in Contao 5.0. Use Cache::has() instead.
public __isset ( string $strKey ) : boolean
$strKey string The cache key
Результат boolean True if the key is set
    public function __isset($strKey)
    {
        return static::has($strKey);
    }