19 lines
416 B
PHP
19 lines
416 B
PHP
<?php
|
|
|
|
namespace Doctrine\ORM\Id;
|
|
|
|
use Doctrine\ORM\EntityManager;
|
|
|
|
/**
|
|
* Id generator that uses a single-row database table and a hi/lo algorithm.
|
|
*
|
|
* @since 2.0
|
|
* @todo Implementation
|
|
*/
|
|
class TableGenerator extends AbstractIdGenerator
|
|
{
|
|
public function generate(EntityManager $em, $entity)
|
|
{
|
|
throw \Doctrine\Common\DoctrineException::notImplemented(__CLASS__ . '::' . __FUNCTION__);
|
|
}
|
|
} |