diff --git a/lib/Doctrine/ClassMetadata.php b/lib/Doctrine/ClassMetadata.php index 6e5eb1581..a8dfe200f 100644 --- a/lib/Doctrine/ClassMetadata.php +++ b/lib/Doctrine/ClassMetadata.php @@ -792,13 +792,13 @@ class Doctrine_ClassMetadata implements Doctrine_Configurable, Serializable protected function _createIdGenerator() { if ($this->_generatorType == self::GENERATOR_TYPE_IDENTITY) { - $this->_idGenerator = new Doctrine_Id_IdentityGenerator($this->_em); + $this->_idGenerator = new Doctrine_ORM_Id_IdentityGenerator($this->_em); } else if ($this->_generatorType == self::GENERATOR_TYPE_SEQUENCE) { - $this->_idGenerator = new Doctrine_Id_SequenceGenerator($this->_em); + $this->_idGenerator = new Doctrine_ORM_Id_SequenceGenerator($this->_em); } else if ($this->_generatorType == self::GENERATOR_TYPE_TABLE) { - $this->_idGenerator = new Doctrine_Id_TableGenerator($this->_em); + $this->_idGenerator = new Doctrine_ORM_Id_TableGenerator($this->_em); } else { - $this->_idGenerator = new Doctrine_Id_Assigned($this->_em); + $this->_idGenerator = new Doctrine_ORM_Id_Assigned($this->_em); } } diff --git a/lib/Doctrine/Connection/UnitOfWork.php b/lib/Doctrine/Connection/UnitOfWork.php index 0b8c0e640..094fc444c 100644 --- a/lib/Doctrine/Connection/UnitOfWork.php +++ b/lib/Doctrine/Connection/UnitOfWork.php @@ -638,7 +638,7 @@ class Doctrine_Connection_UnitOfWork break; case Doctrine_Entity::STATE_NEW: $result = $class->getIdGenerator()->generate($entity); - if ($result == Doctrine_Id_AbstractIdGenerator::POST_INSERT_INDICATOR) { + if ($result == Doctrine_ORM_Id_AbstractIdGenerator::POST_INSERT_INDICATOR) { $insertNow[$entity->getOid()] = $entity; } else { $entity->_assignIdentifier($result); diff --git a/lib/Doctrine/Id/AbstractIdGenerator.php b/lib/Doctrine/ORM/Id/AbstractIdGenerator.php similarity index 88% rename from lib/Doctrine/Id/AbstractIdGenerator.php rename to lib/Doctrine/ORM/Id/AbstractIdGenerator.php index 3e12147c6..6fea0e962 100644 --- a/lib/Doctrine/Id/AbstractIdGenerator.php +++ b/lib/Doctrine/ORM/Id/AbstractIdGenerator.php @@ -7,7 +7,7 @@ * * @todo Rename to AbstractIdGenerator */ -abstract class Doctrine_Id_AbstractIdGenerator +abstract class Doctrine_ORM_Id_AbstractIdGenerator { const POST_INSERT_INDICATOR = 'POST_INSERT_INDICATOR'; diff --git a/lib/Doctrine/Id/Assigned.php b/lib/Doctrine/ORM/Id/Assigned.php similarity index 85% rename from lib/Doctrine/Id/Assigned.php rename to lib/Doctrine/ORM/Id/Assigned.php index 62c5a07d9..013e85e42 100644 --- a/lib/Doctrine/Id/Assigned.php +++ b/lib/Doctrine/ORM/Id/Assigned.php @@ -5,7 +5,7 @@ * * @since 2.0 */ -class Doctrine_Id_Assigned extends Doctrine_Id_AbstractIdGenerator +class Doctrine_ORM_Id_Assigned extends Doctrine_ORM_Id_AbstractIdGenerator { /** * Enter description here... diff --git a/lib/Doctrine/Id/IdentityGenerator.php b/lib/Doctrine/ORM/Id/IdentityGenerator.php similarity index 81% rename from lib/Doctrine/Id/IdentityGenerator.php rename to lib/Doctrine/ORM/Id/IdentityGenerator.php index 93dc6c413..3b2e62583 100644 --- a/lib/Doctrine/Id/IdentityGenerator.php +++ b/lib/Doctrine/ORM/Id/IdentityGenerator.php @@ -1,6 +1,6 @@ _idGenerator = $g; } diff --git a/tests/lib/mocks/Doctrine_SequenceMock.php b/tests/lib/mocks/Doctrine_SequenceMock.php index 019459861..28da384c5 100644 --- a/tests/lib/mocks/Doctrine_SequenceMock.php +++ b/tests/lib/mocks/Doctrine_SequenceMock.php @@ -1,6 +1,6 @@