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

<?php
namespace Doctrine\ORM\Id;
/**
* Id generator that uses a single-row database table and a hi/lo algorithm.
*
* @since 2.0
*/
class TableGenerator extends AbstractIdGenerator
{
public function generate($entity)
{
throw new \Exception("Not implemented");
}
}