1
0
mirror of synced 2024-12-14 07:06:04 +03:00
doctrine2/lib/Doctrine/ORM/Id/TableGenerator.php

20 lines
302 B
PHP
Raw Normal View History

<?php
namespace Doctrine\ORM\Id;
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
*/
class TableGenerator extends AbstractIdGenerator
2008-09-07 17:48:40 +04:00
{
public function generate($entity)
2008-09-07 17:48:40 +04:00
{
throw new \Exception("Not implemented");
2008-09-07 17:48:40 +04:00
}
}