2008-08-31 22:27:16 +04:00
|
|
|
<?php
|
|
|
|
|
2008-09-07 17:48:40 +04:00
|
|
|
/**
|
|
|
|
* Id generator that uses a single-row database table and a hi/lo algorithm.
|
|
|
|
*
|
|
|
|
* @since 2.0
|
|
|
|
*/
|
2008-09-12 14:02:06 +04:00
|
|
|
class Doctrine_ORM_Id_TableGenerator extends Doctrine_ORM_Id_AbstractIdGenerator
|
2008-09-07 17:48:40 +04:00
|
|
|
{
|
|
|
|
|
2008-09-12 14:40:23 +04:00
|
|
|
public function generate(Doctrine_ORM_Entity $entity)
|
2008-09-07 17:48:40 +04:00
|
|
|
{
|
|
|
|
throw new Exception("Not implemented");
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2008-08-31 22:27:16 +04:00
|
|
|
?>
|