Prechádzať zdrojové kódy

Merge pull request #110 from craue/master

fixed typo in error message
Thomas 14 rokov pred
rodič
commit
c48ead16cc
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  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;