Isswp101\Persimmon\Cache\RuntimeCache::has PHP Метод

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

Return true if cache contains this key.
public has ( mixed $key ) : boolean
$key mixed
Результат boolean
    public function has($key)
    {
        return array_key_exists($key, $this->cache);
    }