1
0
mirror of synced 2025-01-09 18:47:10 +03:00

Merge pull request #1048 from MidnightDesign/patch-1

Fix typo in exception message
This commit is contained in:
Marco Pivetta 2014-06-06 04:34:50 +02:00
commit 3ade0cf6a5

View File

@ -655,7 +655,7 @@ class MappingException extends \Doctrine\ORM\ORMException
*/
public static function noInheritanceOnMappedSuperClass($className)
{
return new self("Its not supported to define inheritance information on a mapped superclass '" . $className . "'.");
return new self("It is not supported to define inheritance information on a mapped superclass '" . $className . "'.");
}
/**