merged branch Tobion/patch-3 (PR #4903)

Commits
-------

ffd8c1e [Form] add thrown exceptions to FormRegistryInterface

Discussion
----------

[Form] add thrown exceptions to FormRegistryInterface
This commit is contained in:
Fabien Potencier 2012-07-14 00:00:15 +02:00
commit 17888d2afb
1 changed files with 5 additions and 1 deletions

View File

@ -34,7 +34,8 @@ interface FormRegistryInterface
*
* @return ResolvedFormTypeInterface The type
*
* @throws Exception\FormException if the type can not be retrieved from any extension
* @throws Exception\UnexpectedTypeException if the passed name is not a string
* @throws Exception\FormException if the type can not be retrieved from any extension
*/
public function getType($name);
@ -53,6 +54,9 @@ interface FormRegistryInterface
* @param FormTypeInterface $type
*
* @return ResolvedFormTypeInterface
*
* @throws Exception\UnexpectedTypeException if the types parent {@link FormTypeInterface::getParent()} is not a string
* @throws Exception\FormException if the types parent can not be retrieved from any extension
*/
public function resolveType(FormTypeInterface $type);