From 45eef4a03c923f4de0eb553bd725a1d7455741a9 Mon Sep 17 00:00:00 2001 From: Fran Moreno Date: Wed, 3 Oct 2012 10:51:14 +0300 Subject: [PATCH] [SchemaValidator] Fix typo --- lib/Doctrine/ORM/Tools/SchemaValidator.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Doctrine/ORM/Tools/SchemaValidator.php b/lib/Doctrine/ORM/Tools/SchemaValidator.php index 7a3f6f580..0abdf4f9e 100644 --- a/lib/Doctrine/ORM/Tools/SchemaValidator.php +++ b/lib/Doctrine/ORM/Tools/SchemaValidator.php @@ -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