From 34dbefaf221aacc9cf6bb4794e25fd657d9fc763 Mon Sep 17 00:00:00 2001 From: jeroendedauw Date: Mon, 15 Feb 2016 15:15:32 +0100 Subject: [PATCH] Add missing @throws tags --- lib/Doctrine/ORM/EntityManager.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/Doctrine/ORM/EntityManager.php b/lib/Doctrine/ORM/EntityManager.php index b0f1dc0bb..d66f454e7 100644 --- a/lib/Doctrine/ORM/EntityManager.php +++ b/lib/Doctrine/ORM/EntityManager.php @@ -348,6 +348,7 @@ use Doctrine\Common\Util\ClassUtils; * * @throws \Doctrine\ORM\OptimisticLockException If a version check on an entity that * makes use of optimistic locking fails. + * @throws ORMException */ public function flush($entity = null) { @@ -567,6 +568,7 @@ use Doctrine\Common\Util\ClassUtils; * @return void * * @throws ORMInvalidArgumentException + * @throws ORMException */ public function persist($entity) { @@ -590,6 +592,7 @@ use Doctrine\Common\Util\ClassUtils; * @return void * * @throws ORMInvalidArgumentException + * @throws ORMException */ public function remove($entity) { @@ -611,6 +614,7 @@ use Doctrine\Common\Util\ClassUtils; * @return void * * @throws ORMInvalidArgumentException + * @throws ORMException */ public function refresh($entity) { @@ -655,6 +659,7 @@ use Doctrine\Common\Util\ClassUtils; * @return object The managed copy of the entity. * * @throws ORMInvalidArgumentException + * @throws ORMException */ public function merge($entity) {