Explorar el Código

Merge pull request #110 from craue/master

fixed typo in error message
Thomas hace 14 años
padre
commit
c48ead16cc
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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;