mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-04-02 21:36:14 +03:00
Merge pull request #736 from BenjaminPaap/pass_options
Options for form were not passed through
This commit is contained in:
commit
329e226426
1 changed files with 3 additions and 3 deletions
|
@ -306,16 +306,16 @@ class FormTypeParser implements ParserInterface
|
|||
return $refl->newInstance();
|
||||
}
|
||||
|
||||
private function createForm($item)
|
||||
private function createForm($item, $data = null, array $options = [])
|
||||
{
|
||||
if ($this->implementsType($item)) {
|
||||
$type = $this->getTypeInstance($item);
|
||||
|
||||
return $this->formFactory->create($type);
|
||||
return $this->formFactory->create($type, $data, $options);
|
||||
}
|
||||
|
||||
try {
|
||||
return $this->formFactory->create($item);
|
||||
return $this->formFactory->create($item, $data, $options);
|
||||
} catch (UnexpectedTypeException $e) {
|
||||
// nothing
|
||||
} catch (InvalidArgumentException $e) {
|
||||
|
|
Loading…
Add table
Reference in a new issue