Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Major
-
Resolution: Invalid
-
Affects Version/s: 2.1
-
Fix Version/s: None
-
Component/s: None
-
Security Level: All
-
Labels:None
-
Environment:Ubuntu, Mac OS X
Description
After upgrading doctrine from 2.0 to 2.2.2 I found following backward compatible break:
Following throws an ORMException missingIdentifierField. This should return null as in 2.0
$this->_em->getRepository('Entities\Customer');
$repository->find(null);
$repository->findById(null); is working correctly.