mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-04-06 07:13:31 +03:00
Merge pull request #428 from gnat42/patch-1
If a description is not provided use form label
This commit is contained in:
commit
94243f0a3e
1 changed files with 3 additions and 3 deletions
|
@ -187,7 +187,7 @@ class FormTypeParser implements ParserInterface
|
|||
'default' => null,
|
||||
'subType' => $subType,
|
||||
'required' => $config->getRequired(),
|
||||
'description' => $config->getAttribute('description'),
|
||||
'description' => ($config->getOption('description')) ? $config->getOption('description'):$config->getOption('label'),
|
||||
'readonly' => $config->getDisabled(),
|
||||
'children' => $children,
|
||||
);
|
||||
|
@ -205,7 +205,7 @@ class FormTypeParser implements ParserInterface
|
|||
'actualType' => 'string',
|
||||
'default' => $config->getData(),
|
||||
'required' => $config->getRequired(),
|
||||
'description' => $config->getAttribute('description'),
|
||||
'description' => ($config->getOption('description')) ? $config->getOption('description'):$config->getOption('label'),
|
||||
'readonly' => $config->getDisabled(),
|
||||
);
|
||||
}
|
||||
|
@ -221,7 +221,7 @@ class FormTypeParser implements ParserInterface
|
|||
'subType' => $subType,
|
||||
'default' => $config->getData(),
|
||||
'required' => $config->getRequired(),
|
||||
'description' => $config->getAttribute('description'),
|
||||
'description' => ($config->getOption('description')) ? $config->getOption('description'):$config->getOption('label'),
|
||||
'readonly' => $config->getDisabled(),
|
||||
);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue