1
0
mirror of synced 2025-01-18 14:31:40 +03:00
doctrine2/lib/Doctrine/ORM/Id/TableGenerator.php

19 lines
407 B
PHP
Raw Normal View History

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