1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/lib/Doctrine/ORM/Id/TableGenerator.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.");
}
}