Nextras\Orm\Mapper\Dbal\DbalCollection::getEntityIterator PHP Méthode

getEntityIterator() public méthode

public getEntityIterator ( Nextras\Orm\Entity\IEntity $parent = null )
$parent Nextras\Orm\Entity\IEntity
    public function getEntityIterator(IEntity $parent = null)
    {
        if ($this->relationshipMapper) {
            return $this->relationshipMapper->getIterator($parent, $this);
        }
        if ($this->result === null) {
            $this->execute();
        }
        return new EntityIterator($this->result);
    }