1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/lib/Doctrine/Id/Assigned.php

25 lines
518 B
PHP
Raw Normal View History

2008-09-07 17:48:40 +04:00
<?php
/**
* Special generator for application-assigned identifiers (doesnt really generate anything).
*
* @since 2.0
*/
class Doctrine_Id_Assigned extends Doctrine_Id_AbstractIdGenerator
{
/**
* Enter description here...
*
* @param Doctrine_Entity $entity
* @return unknown
* @override
*/
public function generate(Doctrine_Entity $entity)
{
if ( ! $entity->_identifier()) {
throw Doctrine_IdException::missingAssignedId($entity);
}
}
}
?>