2008-08-31 18:27:16 +00:00
|
|
|
<?php
|
|
|
|
|
2009-01-22 19:38:10 +00:00
|
|
|
namespace Doctrine\ORM\Id;
|
|
|
|
|
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
|
|
|
|
*/
|
2009-01-22 19:38:10 +00:00
|
|
|
class TableGenerator extends AbstractIdGenerator
|
2008-09-07 13:48:40 +00:00
|
|
|
{
|
2008-12-18 14:08:11 +00:00
|
|
|
public function generate($entity)
|
2008-09-07 13:48:40 +00:00
|
|
|
{
|
2009-02-19 07:07:44 +00:00
|
|
|
throw \Doctrine\Common\DoctrineException::updateMe("Not implemented");
|
2008-09-07 13:48:40 +00:00
|
|
|
}
|
2009-02-20 05:46:20 +00:00
|
|
|
}
|