[SchemaValidator] Fix typo
This commit is contained in:
parent
831f0acdc5
commit
45eef4a03c
@ -128,7 +128,7 @@ class SchemaValidator
|
|||||||
} else if ($targetMetadata->associationMappings[$assoc['mappedBy']]['inversedBy'] != $fieldName) {
|
} else if ($targetMetadata->associationMappings[$assoc['mappedBy']]['inversedBy'] != $fieldName) {
|
||||||
$ce[] = "The mappings " . $class->name . "#" . $fieldName . " and " .
|
$ce[] = "The mappings " . $class->name . "#" . $fieldName . " and " .
|
||||||
$assoc['targetEntity'] . "#" . $assoc['mappedBy'] . " are ".
|
$assoc['targetEntity'] . "#" . $assoc['mappedBy'] . " are ".
|
||||||
"incosistent with each other.";
|
"inconsistent with each other.";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -148,7 +148,7 @@ class SchemaValidator
|
|||||||
} else if ($targetMetadata->associationMappings[$assoc['inversedBy']]['mappedBy'] != $fieldName) {
|
} else if ($targetMetadata->associationMappings[$assoc['inversedBy']]['mappedBy'] != $fieldName) {
|
||||||
$ce[] = "The mappings " . $class->name . "#" . $fieldName . " and " .
|
$ce[] = "The mappings " . $class->name . "#" . $fieldName . " and " .
|
||||||
$assoc['targetEntity'] . "#" . $assoc['inversedBy'] . " are ".
|
$assoc['targetEntity'] . "#" . $assoc['inversedBy'] . " are ".
|
||||||
"incosistent with each other.";
|
"inconsistent with each other.";
|
||||||
}
|
}
|
||||||
|
|
||||||
// Verify inverse side/owning side match each other
|
// Verify inverse side/owning side match each other
|
||||||
|
Loading…
Reference in New Issue
Block a user