1
0
mirror of synced 2024-12-14 15:16:04 +03:00
doctrine2/lib/Doctrine/Id/TableGenerator.php

18 lines
315 B
PHP
Raw Normal View History

<?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
*/
class Doctrine_Id_TableGenerator extends Doctrine_Id_AbstractIdGenerator
{
public function generate(Doctrine_Entity $entity)
{
throw new Exception("Not implemented");
}
}
?>