From b66643d52ef0e61ee14575d00ecfabcb76e13a96 Mon Sep 17 00:00:00 2001 From: Marco Pivetta Date: Sat, 19 Aug 2017 17:49:14 +0200 Subject: [PATCH] #6303 #6304 removing useless union type usage --- tests/Doctrine/Tests/ORM/Functional/Ticket/DDC6303Test.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC6303Test.php b/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC6303Test.php index 7c4510c06..32cb5ce97 100644 --- a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC6303Test.php +++ b/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC6303Test.php @@ -47,7 +47,7 @@ class DDC6303Test extends OrmFunctionalTestCase } /** - * @param DDC6303ChildA[]|DDC6303ChildB[] $persistedEntities indexed by identifier + * @param DDC6303BaseClass[] $persistedEntities indexed by identifier * * @throws \Doctrine\Common\Persistence\Mapping\MappingException * @throws \Doctrine\ORM\ORMException @@ -59,7 +59,7 @@ class DDC6303Test extends OrmFunctionalTestCase $this->_em->flush(); $this->_em->clear(); - /* @var $entities DDC6303ChildA[]|DDC6303ChildB[] */ + /* @var $entities DDC6303BaseClass[] */ $entities = $this ->_em ->getRepository(DDC6303BaseClass::class)