18 lines
307 B
PHP
18 lines
307 B
PHP
<?php
|
|
|
|
/**
|
|
* Id generator that uses a single-row database table and a hi/lo algorithm.
|
|
*
|
|
* @since 2.0
|
|
*/
|
|
class Doctrine_ORM_Id_TableGenerator extends Doctrine_ORM_Id_AbstractIdGenerator
|
|
{
|
|
|
|
public function generate($entity)
|
|
{
|
|
throw new Exception("Not implemented");
|
|
}
|
|
|
|
}
|
|
|
|
?>
|