. */ namespace Doctrine\ORM\Id; use Doctrine\Common\DoctrineException; /** * Special generator for application-assigned identifiers (doesnt really generate anything). * * @since 2.0 * @author Roman Borschel */ class Assigned extends AbstractIdGenerator { /** * Returns the identifier assigned to the given entity. * * @param object $entity * @return mixed * @override */ public function generate($entity) { $class = $this->_em->getClassMetadata(get_class($entity)); $identifier = null; if ($class->isIdentifierComposite()) { $identifier = array(); $idFields = $class->getIdentifierFieldNames(); foreach ($idFields as $idField) { $identifier[] = $value = $class->getReflectionProperty($idField)->getValue($entity); if (isset($value)) { $identifier[] = $value; } } } else { $value = $class->getReflectionProperty($class->getSingleIdentifierFieldName()) ->getValue($entity); if (isset($value)) { $identifier = array($value); } } if ( ! $identifier) { \Doctrine\Common\DoctrineException::updateMe("Entity of type '" . get_class($entity) . "' is missing an assigned ID."); } return $identifier; } }