瀏覽代碼

fixed typo in error message

Christian Raue 14 年之前
父節點
當前提交
400837d370
共有 1 個文件被更改,包括 1 次插入1 次删除
  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;