. */ Doctrine::autoload('Doctrine_Collection_Iterator'); /** * Doctrine_Collection_Iterator_Normal * * @package Doctrine ORM * @url www.phpdoctrine.com * @license LGPL */ class Doctrine_Collection_Iterator_Normal extends Doctrine_Collection_Iterator { /** * @return boolean whether or not the iteration will continue */ public function valid() { return ($this->index < $this->count); } }