1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/lib/Doctrine/ORM/Id/TableGenerator.php
2008-09-12 10:02:06 +00:00

18 lines
323 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(Doctrine_Entity $entity)
{
throw new Exception("Not implemented");
}
}
?>