diff --git a/lib/Doctrine/ORM/EntityManager.php b/lib/Doctrine/ORM/EntityManager.php index 3af9cf3c3..cdd178baf 100644 --- a/lib/Doctrine/ORM/EntityManager.php +++ b/lib/Doctrine/ORM/EntityManager.php @@ -21,6 +21,7 @@ namespace Doctrine\ORM; use Closure, Exception, Doctrine\Common\EventManager, + Doctrine\Common\Persistence\ObjectManager, Doctrine\DBAL\Connection, Doctrine\DBAL\LockMode, Doctrine\ORM\Mapping\ClassMetadata, @@ -37,7 +38,7 @@ use Closure, Exception, * @author Jonathan Wage * @author Roman Borschel */ -class EntityManager +class EntityManager implements ObjectManager { /** * The used Configuration. diff --git a/lib/Doctrine/ORM/EntityRepository.php b/lib/Doctrine/ORM/EntityRepository.php index 81680647c..60fc91760 100644 --- a/lib/Doctrine/ORM/EntityRepository.php +++ b/lib/Doctrine/ORM/EntityRepository.php @@ -20,6 +20,7 @@ namespace Doctrine\ORM; use Doctrine\DBAL\LockMode; +use Doctrine\Common\Persistence\ObjectRepository; /** * An EntityRepository serves as a repository for entities with generic as well as @@ -34,7 +35,7 @@ use Doctrine\DBAL\LockMode; * @author Jonathan Wage * @author Roman Borschel */ -class EntityRepository +class EntityRepository implements ObjectRepository { /** * @var string diff --git a/lib/Doctrine/ORM/Mapping/ClassMetadataInfo.php b/lib/Doctrine/ORM/Mapping/ClassMetadataInfo.php index 5e96cc4c1..b482b1c5e 100644 --- a/lib/Doctrine/ORM/Mapping/ClassMetadataInfo.php +++ b/lib/Doctrine/ORM/Mapping/ClassMetadataInfo.php @@ -19,6 +19,7 @@ namespace Doctrine\ORM\Mapping; +use Doctrine\Common\Persistence\Mapping\ClassMetadata; use ReflectionClass; /** @@ -39,7 +40,7 @@ use ReflectionClass; * @author Jonathan H. Wage * @since 2.0 */ -class ClassMetadataInfo +class ClassMetadataInfo implements ClassMetadata { /* The inheritance mapping types */ /** @@ -778,7 +779,7 @@ class ClassMetadataInfo $mapping['isOwningSide'] = false; } - if (isset($mapping['id']) && $mapping['id'] === true && $mapping['type'] & ClassMetadata::TO_MANY) { + if (isset($mapping['id']) && $mapping['id'] === true && $mapping['type'] & self::TO_MANY) { throw MappingException::illegalToManyIdentifierAssoaction($this->name, $mapping['fieldName']); } @@ -1024,6 +1025,16 @@ class ClassMetadataInfo $this->isIdentifierComposite = (count($this->identifier) > 1); } + /** + * Gets the mapped identifier field of this class. + * + * @return string $identifier + */ + public function getIdentifier() + { + return $this->identifier; + } + /** * Checks whether the class has a (mapped) field with a certain name. * diff --git a/lib/vendor/doctrine-common b/lib/vendor/doctrine-common index 9d414673b..1b112962b 160000 --- a/lib/vendor/doctrine-common +++ b/lib/vendor/doctrine-common @@ -1 +1 @@ -Subproject commit 9d414673bb007e61977341d78745fc5aa316a92b +Subproject commit 1b112962b09d799237b1b73caf3c838b46d976de