1
0
Fork 0
mirror of synced 2025-04-04 05:43:36 +03:00

entity should be nullable as in master

This commit is contained in:
Tobias Schultze 2018-04-10 19:15:48 +02:00 committed by GitHub
parent 8ceb47178b
commit 7ba0290643
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 object $entity
* @param object|null $entity
* @return mixed
*/
abstract public function generate(EntityManager $em, $entity);