1
0
mirror of synced 2024-12-14 15:16:04 +03:00
doctrine2/Doctrine/Iterator/Normal.php
2006-05-30 09:00:09 +00:00

13 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);
}
}
?>