|
@@ -130,9 +130,6 @@ class Generator
|
|
|
->filter(function ($tag) {
|
|
|
return $tag instanceof Tag && $tag->getName() === 'bodyParam';
|
|
|
})
|
|
|
- ->filter(function (Tag $tag) {
|
|
|
- return ! $this->shouldExcludeExample($tag);
|
|
|
- })
|
|
|
->mapWithKeys(function ($tag) {
|
|
|
preg_match('/(.+?)\s+(.+?)\s+(required\s+)?(.*)/', $tag->getContent(), $content);
|
|
|
if (empty($content)) {
|
|
@@ -208,9 +205,6 @@ class Generator
|
|
|
->filter(function ($tag) {
|
|
|
return $tag instanceof Tag && $tag->getName() === 'queryParam';
|
|
|
})
|
|
|
- ->filter(function (Tag $tag) {
|
|
|
- return ! $this->shouldExcludeExample($tag);
|
|
|
- })
|
|
|
->mapWithKeys(function ($tag) {
|
|
|
preg_match('/(.+?)\s+(required\s+)?(.*)/', $tag->getContent(), $content);
|
|
|
if (empty($content)) {
|