Neos\Cache\Backend\SimpleFileBackend::next PHP Method

next() public method

Move forward to the next cache entry
public next ( ) : void
return void
    public function next()
    {
        if ($this->cacheFilesIterator === null) {
            $this->rewind();
        }
        $this->cacheFilesIterator->next();
        while ($this->cacheFilesIterator->isDot() && $this->cacheFilesIterator->valid()) {
            $this->cacheFilesIterator->next();
        }
    }