1
0
mirror of synced 2025-03-22 16:03:49 +03:00

Merge pull request #461 from franmomu/patch-1

[SchemaValidator] Fix typo
This commit is contained in:
Benjamin Eberlei 2012-10-03 01:46:44 -07:00
commit 079beb957e

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