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

Fix typo in exception message

This commit is contained in:
Rudolph Gottesheim 2014-06-04 15:59:57 +02:00
parent 6f622ab1f7
commit daa90bf32d

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 . "'.");
}
/**