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

Fix QueryException::instanceOfUnrelatedClass() message

This commit is contained in:
Vincent Composieux 2014-08-15 15:39:56 +02:00
parent ebc70d1baf
commit edc2ed9512

View file

@ -248,7 +248,7 @@ class QueryException extends \Doctrine\ORM\ORMException
public static function instanceOfUnrelatedClass($className, $rootClass) public static function instanceOfUnrelatedClass($className, $rootClass)
{ {
return new self("Cannot check if a child of '" . $rootClass . "' is instanceof '" . $className . "', " . return new self("Cannot check if a child of '" . $rootClass . "' is instanceof '" . $className . "', " .
"inheritance hierarchy exists between these two classes."); "inheritance hierarchy does not exists between these two classes.");
} }
/** /**