Nextras\Orm\Mapper\Dbal\DbalCollection::fetch PHP 메소드

fetch() 공개 메소드

public fetch ( )
    public function fetch()
    {
        if (!$this->fetchIterator) {
            $this->fetchIterator = $this->getIterator();
        }
        if ($current = $this->fetchIterator->current()) {
            $this->fetchIterator->next();
            return $current;
        }
        return null;
    }