1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

Fixed php notice in ClassMetadataFactory

This commit is contained in:
Fabien Pennequin 2011-07-17 19:39:55 +02:00
parent 180dbbad8b
commit 99bdf65c10

View file

@ -340,7 +340,7 @@ class ClassMetadataFactory implements ClassMetadataFactoryInterface
{ {
// Verify & complete identifier mapping // Verify & complete identifier mapping
if ( ! $class->identifier && ! $class->isMappedSuperclass) { if ( ! $class->identifier && ! $class->isMappedSuperclass) {
throw MappingException::identifierRequired($className); throw MappingException::identifierRequired($class->name);
} }
// verify inheritance // verify inheritance