1
0
mirror of synced 2025-02-03 05:49:25 +03:00

#6303 #6304 removing useless union type usage

This commit is contained in:
Marco Pivetta 2017-08-19 17:49:14 +02:00
parent 42d9162bd5
commit b66643d52e
No known key found for this signature in database
GPG Key ID: 4167D3337FD9D629

View File

@ -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\Common\Persistence\Mapping\MappingException
* @throws \Doctrine\ORM\ORMException * @throws \Doctrine\ORM\ORMException
@ -59,7 +59,7 @@ class DDC6303Test extends OrmFunctionalTestCase
$this->_em->flush(); $this->_em->flush();
$this->_em->clear(); $this->_em->clear();
/* @var $entities DDC6303ChildA[]|DDC6303ChildB[] */ /* @var $entities DDC6303BaseClass[] */
$entities = $this $entities = $this
->_em ->_em
->getRepository(DDC6303BaseClass::class) ->getRepository(DDC6303BaseClass::class)