Jackalope\Query\RowIterator::current PHP Method

current() public method

public current ( )
    public function current()
    {
        if (!$this->valid()) {
            return null;
        }
        return $this->factory->get('Query\\Row', array($this->objectManager, $this->rows[$this->position]));
    }