Fix QueryException::instanceOfUnrelatedClass() message
This commit is contained in:
parent
ebc70d1baf
commit
edc2ed9512
1 changed files with 1 additions and 1 deletions
|
@ -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.");
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue