mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-04-03 22:03:33 +03:00
Merge pull request #643 from ogizanagi/dunglas/fix_filters_doc
Fix DunglasApiBundle filters documentation support.
This commit is contained in:
commit
a68dcfe829
1 changed files with 2 additions and 2 deletions
|
@ -127,8 +127,8 @@ class DunglasApiProvider implements AnnotationsProviderInterface
|
|||
|
||||
$data['filters'] = [];
|
||||
foreach ($resource->getFilters() as $filter) {
|
||||
foreach ($filter->getDescription($resource) as $name => $data) {
|
||||
$data['filters'][] = ['name' => $name] + $data;
|
||||
foreach ($filter->getDescription($resource) as $name => $definition) {
|
||||
$data['filters'][] = ['name' => $name] + $definition;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue