Skip to content

Commit 0541367

Browse files
committed
fix for #512
1 parent 229b089 commit 0541367

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/Tqdev/PhpCrudApi/OpenApi/OpenApiBuilder.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,6 @@ private function setComponentParameters() /*: void*/
258258
$this->openapi->set("components|parameters|filter|schema|items|type", "string");
259259
$this->openapi->set("components|parameters|filter|description", "Filters to be applied. Each filter consists of a column, an operator and a value (comma separated). Example: id,eq,1");
260260
$this->openapi->set("components|parameters|filter|required", false);
261-
$this->openapi->set("components|parameters|filter|explode", false);
262261

263262
$this->openapi->set("components|parameters|include|name", "include");
264263
$this->openapi->set("components|parameters|include|in", "query");
@@ -278,7 +277,6 @@ private function setComponentParameters() /*: void*/
278277
$this->openapi->set("components|parameters|order|schema|items|type", "string");
279278
$this->openapi->set("components|parameters|order|description", "Column you want to sort on and the sort direction (comma separated). Example: id,desc");
280279
$this->openapi->set("components|parameters|order|required", false);
281-
$this->openapi->set("components|parameters|order|explode", false);
282280

283281
$this->openapi->set("components|parameters|size|name", "size");
284282
$this->openapi->set("components|parameters|size|in", "query");
@@ -298,7 +296,6 @@ private function setComponentParameters() /*: void*/
298296
$this->openapi->set("components|parameters|join|schema|items|type", "string");
299297
$this->openapi->set("components|parameters|join|description", "Paths (comma separated) to related entities that you want to include. Example: comments,users");
300298
$this->openapi->set("components|parameters|join|required", false);
301-
$this->openapi->set("components|parameters|join|explode", false);
302299
}
303300

304301
private function setTag(int $index, String $tableName) /*: void*/

0 commit comments

Comments
 (0)