1
0
mirror of synced 2025-01-21 07:41:41 +03:00
doctrine2/lib/Doctrine/ORM/Id/TableGenerator.php

18 lines
327 B
PHP
Raw Normal View History

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