mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-04-02 21:36:14 +03:00
Allow filter descriptions to be used in conjunction with POST/PUT input descriptions
This commit is contained in:
parent
718dfc6e9c
commit
fcd4d8fa2a
1 changed files with 3 additions and 1 deletions
|
@ -174,7 +174,9 @@ class ApiDoc
|
|||
|
||||
if (isset($data['input'])) {
|
||||
$this->input = $data['input'];
|
||||
} elseif (isset($data['filters'])) {
|
||||
}
|
||||
|
||||
if (isset($data['filters'])) {
|
||||
foreach ($data['filters'] as $filter) {
|
||||
if (!isset($filter['name'])) {
|
||||
throw new \InvalidArgumentException('A "filter" element has to contain a "name" attribute');
|
||||
|
|
Loading…
Add table
Reference in a new issue