Neos\Cache\Backend\PdoBackend::key PHP Method

key() public method

Returns the identifier of the current cache entry pointed to by the cache entry iterator.
public key ( ) : string
return string
    public function key()
    {
        if ($this->cacheEntriesIterator === null) {
            $this->rewind();
        }
        return $this->cacheEntriesIterator->key();
    }