Jyxo\Spl\ObjectCache::__isset PHP Method

__isset() public method

Returns if there's an object with key $key in the storage.
public __isset ( string $key ) : boolean
$key string Object key
return boolean
    public function __isset($key)
    {
        return isset($this->storage[$key]);
    }