Neos\Cache\Backend\PdoBackend::current PHP 메소드

current() 공개 메소드

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