1
0
Fork 0
mirror of synced 2025-04-01 20:36:14 +03:00
doctrine2/Doctrine/Iterator/Normal.php
2006-05-30 09:00:09 +00:00

12 lines
313 B
PHP

<?php
Doctrine::autoload('Doctrine_Iterator');
class Doctrine_Iterator_Normal extends Doctrine_Iterator {
/**
* @return boolean whether or not the iteration will continue
*/
public function valid() {
return ($this->index < $this->count);
}
}
?>