소스 검색

[Form] fixed transformation failed exception

Daniel Holmes 14 년 전
부모
커밋
dd692c0203
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/Symfony/Bridge/Doctrine/Form/DataTransformer/EntityToIdTransformer.php

+ 1 - 1
src/Symfony/Bridge/Doctrine/Form/DataTransformer/EntityToIdTransformer.php

@@ -70,7 +70,7 @@ class EntityToIdTransformer implements DataTransformerInterface
         }
 
         if (!($entity = $this->choiceList->getEntity($key))) {
-            throw new TransformationFailedException('The entity with key "%s" could not be found', $key);
+            throw new TransformationFailedException(sprintf('The entity with key "%s" could not be found', $key));
         }
 
         return $entity;