Predis\Collection\Iterator\CursorBasedIterator::extractNext PHP Method

extractNext() protected method

Extracts next values for key() and current().
protected extractNext ( )
    protected function extractNext()
    {
        ++$this->position;
        $this->current = array_shift($this->elements);
    }