1
0
mirror of synced 2025-01-19 15:01:40 +03:00

13 lines
313 B
PHP
Raw Normal View History

2006-05-30 09:00:09 +00:00
<?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);
}
}
?>