1
0
mirror of synced 2024-12-13 14:56:01 +03:00

[SchemaValidator] Fix typo

This commit is contained in:
Fran Moreno 2012-10-03 10:51:14 +03:00
parent 831f0acdc5
commit 45eef4a03c

View File

@ -128,7 +128,7 @@ class SchemaValidator
} else if ($targetMetadata->associationMappings[$assoc['mappedBy']]['inversedBy'] != $fieldName) {
$ce[] = "The mappings " . $class->name . "#" . $fieldName . " and " .
$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) {
$ce[] = "The mappings " . $class->name . "#" . $fieldName . " and " .
$assoc['targetEntity'] . "#" . $assoc['inversedBy'] . " are ".
"incosistent with each other.";
"inconsistent with each other.";
}
// Verify inverse side/owning side match each other