. */ Doctrine::autoload('Doctrine_Collection_Iterator'); /** * Doctrine_Collection_Iterator_Normal * * @package Doctrine * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @category Object Relational Mapping * @link www.phpdoctrine.com * @since 1.0 * @version $Revision$ * @author Konsta Vesterinen */ 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); } }