1
0
mirror of synced 2025-01-18 22:41:43 +03:00
doctrine2/classes/Iterator/Normal.class.php
doctrine 88dc397e7c
2006-04-19 20:03:23 +00:00

13 lines
348 B
PHP

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