mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-04-06 07:13:31 +03:00
Fix parse of input forms with options required
When form like model type was parsed this pass the required 'class' option to enable the build of the class
This commit is contained in:
parent
fd126c1a01
commit
4181079d8b
1 changed files with 1 additions and 1 deletions
|
@ -104,7 +104,7 @@ class FormTypeParser implements ParserInterface
|
|||
$bestType = sprintf('array of %ss', $this->mapTypes[$config->getOption('type')]);
|
||||
} else {
|
||||
// Embedded form collection
|
||||
$subParameters = $this->parseForm($this->formFactory->create($config->getOption('type')), $name . '[]');
|
||||
$subParameters = $this->parseForm($this->formFactory->create($config->getOption('type'), null, $config->getOption('options', array())), $name . '[]');
|
||||
$parameters = array_merge($parameters, $subParameters);
|
||||
|
||||
continue 2;
|
||||
|
|
Loading…
Add table
Reference in a new issue