Isswp101\Persimmon\Cache\RuntimeCache::has PHP Method

has() public method

Return true if cache contains this key.
public has ( mixed $key ) : boolean
$key mixed
return boolean
    public function has($key)
    {
        return array_key_exists($key, $this->cache);
    }