TableGenerator.php 396 Bytes
Newer Older
1 2
<?php

3 4
namespace Doctrine\ORM\Id;

5 6
use Doctrine\ORM\EntityManager;

romanb's avatar
romanb committed
7 8 9 10
/**
 * Id generator that uses a single-row database table and a hi/lo algorithm.  
 *
 * @since 2.0
11
 * @todo Implementation
romanb's avatar
romanb committed
12
 */
13
class TableGenerator extends AbstractIdGenerator
romanb's avatar
romanb committed
14
{
15
    public function generate(EntityManager $em, $entity)
romanb's avatar
romanb committed
16
    {
17
        throw \Doctrine\Common\DoctrineException::updateMe("Not implemented");
romanb's avatar
romanb committed
18
    }
19
}