Browse Source

Merge pull request #110 from craue/master

fixed typo in error message
Thomas 14 years ago
parent
commit
c48ead16cc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Builder/ORM/FormContractor.php

+ 1 - 1
Builder/ORM/FormContractor.php

@@ -112,7 +112,7 @@ class FormContractor implements FormContractorInterface
         }
 
         if (!$typeName) {
-            throw new \RuntimeException(sprintf('No known form type for field `%s` (`%s`) is not implemented', $fieldDescription->getFieldName(), $fieldDescription->getType()));
+            throw new \RuntimeException(sprintf('No known form type for field `%s` (`%s`) is implemented.', $fieldDescription->getFieldName(), $fieldDescription->getType()));
         }
 
         return $typeName;