[2.0] Fixed missing parameter in MappingException::mappingFileNotFound
This commit is contained in:
parent
bbda52a448
commit
b7de1ed115
1 changed files with 2 additions and 2 deletions
|
@ -59,9 +59,9 @@ class MappingException extends \Doctrine\ORM\ORMException
|
||||||
return new self("The association mapping '$fieldName' misses the 'sourceEntity' attribute.");
|
return new self("The association mapping '$fieldName' misses the 'sourceEntity' attribute.");
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function mappingFileNotFound($fileName)
|
public static function mappingFileNotFound($entityName, $fileName)
|
||||||
{
|
{
|
||||||
return new self("No mapping file found named '$fileName'.");
|
return new self("No mapping file found named '$fileName' for class '$entityName'.");
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function mappingNotFound($fieldName)
|
public static function mappingNotFound($fieldName)
|
||||||
|
|
Loading…
Add table
Reference in a new issue