mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-04-03 22:03:33 +03:00
Added TODO comment to the workaround
This commit is contained in:
parent
b3d628a31b
commit
2acf49e9ee
1 changed files with 5 additions and 0 deletions
|
@ -96,6 +96,11 @@ class FormTypeParser implements ParserInterface
|
|||
if ('' === $bestType) {
|
||||
if ($type = $config->getType()) {
|
||||
if ($type = $type->getInnerType()) {
|
||||
/**
|
||||
* TODO: Implement a better handling of unsupported types
|
||||
* This is just a temporary workaround for don't breaking docs page in case of unsupported types
|
||||
* like the entity type https://github.com/nelmio/NelmioApiDocBundle/issues/94
|
||||
*/
|
||||
try {
|
||||
$subForm = $this->formFactory->create($type);
|
||||
$parameters = array_merge($parameters, $this->parseForm($subForm, $name));
|
||||
|
|
Loading…
Add table
Reference in a new issue