1
0
mirror of synced 2024-12-13 14:56:01 +03:00
doctrine2/lib/Doctrine/ORM/Id/TableGenerator.php

19 lines
416 B
PHP
Raw Normal View History

<?php
namespace Doctrine\ORM\Id;
use Doctrine\ORM\EntityManager;
2008-09-07 17:48:40 +04:00
/**
* Id generator that uses a single-row database table and a hi/lo algorithm.
*
* @since 2.0
* @todo Implementation
2008-09-07 17:48:40 +04:00
*/
class TableGenerator extends AbstractIdGenerator
2008-09-07 17:48:40 +04:00
{
public function generate(EntityManager $em, $entity)
2008-09-07 17:48:40 +04:00
{
throw \Doctrine\Common\DoctrineException::notImplemented(__CLASS__ . '::' . __FUNCTION__);
2008-09-07 17:48:40 +04:00
}
}