19 lines
407 B
PHP
19 lines
407 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 new \BadMethodCallException(__CLASS__."::".__FUNCTION__." not implemented.");
|
|
}
|
|
} |