From b7d104d2a2b80480ad158243a7fef7b8f4c597c9 Mon Sep 17 00:00:00 2001 From: Guilherme Blanco Date: Tue, 21 Oct 2014 22:43:26 -0400 Subject: [PATCH] Fixed typo --- lib/Doctrine/ORM/Tools/SchemaValidator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Doctrine/ORM/Tools/SchemaValidator.php b/lib/Doctrine/ORM/Tools/SchemaValidator.php index 8b5741eac..8f59ea72d 100644 --- a/lib/Doctrine/ORM/Tools/SchemaValidator.php +++ b/lib/Doctrine/ORM/Tools/SchemaValidator.php @@ -233,7 +233,7 @@ class SchemaValidator continue; } if ($targetMetadata->isCollectionValuedAssociation($orderField)) { - $ce[] = "The association " . $class->name."#".$fieldName." is ordered by an field " . + $ce[] = "The association " . $class->name."#".$fieldName." is ordered by a field " . $orderField . " on " . $targetMetadata->name . " that is a collection-valued association."; continue; }