DDC-515 - Fixed a notice occuring in certain scenarios of the new Validate Schema Tool
This commit is contained in:
parent
d00f674a08
commit
57cd2e01bb
@ -117,7 +117,8 @@ class SchemaValidator
|
|||||||
"field " . $assoc->targetEntityName . "#" . $assoc->inversedBy . " which does not exist.";
|
"field " . $assoc->targetEntityName . "#" . $assoc->inversedBy . " which does not exist.";
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($targetMetadata->associationMappings[$assoc->mappedBy]->mappedBy == null) {
|
if (isset($targetMetadata->associationMappings[$assoc->mappedBy]) &&
|
||||||
|
$targetMetadata->associationMappings[$assoc->mappedBy]->mappedBy == null) {
|
||||||
$ce[] = "The field " . $class->name . "#" . $fieldName . " is on the inverse side of a ".
|
$ce[] = "The field " . $class->name . "#" . $fieldName . " is on the inverse side of a ".
|
||||||
"bi-directional relationship, but the specified mappedBy association on the target-entity ".
|
"bi-directional relationship, but the specified mappedBy association on the target-entity ".
|
||||||
$assoc->targetEntityName . "#" . $assoc->mappedBy . " does not contain the required ".
|
$assoc->targetEntityName . "#" . $assoc->mappedBy . " does not contain the required ".
|
||||||
|
Loading…
x
Reference in New Issue
Block a user