1
0
mirror of synced 2025-02-09 00:39:25 +03:00

Merge pull request #7190 from Tobion/patch-1

Fix wrong type in phpdoc of AbstractIdGenerator
This commit is contained in:
Marco Pivetta 2018-04-13 16:29:25 +01:00 committed by GitHub
commit 01f89a8cdc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,7 +27,7 @@ abstract class AbstractIdGenerator
* Generates an identifier for an entity.
*
* @param EntityManager $em
* @param \Doctrine\ORM\Mapping\Entity $entity
* @param object|null $entity
* @return mixed
*/
abstract public function generate(EntityManager $em, $entity);