Skip to content

Commit

Permalink
Adjust lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Fernando Piovezan committed Jun 11, 2024
1 parent 0356b3c commit eb22bf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/LaravelRequestDocsToOpenApi.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ private function docsToOpenApi(array $docs): void

$this->openApi['paths'][$uriLeadingSlash][$httpMethod]['summary'] = $doc->getSummary();
$this->openApi['paths'][$uriLeadingSlash][$httpMethod]['description'] = $doc->getDescription() ?: $doc->getDocBlock();
$this->openApi['paths'][$uriLeadingSlash][$httpMethod]['tags'] = [$doc->getTag()];
$this->openApi['paths'][$uriLeadingSlash][$httpMethod]['tags'] = [$doc->getTag()];
$this->openApi['paths'][$uriLeadingSlash][$httpMethod]['parameters'] = [];

foreach ($doc->getPathParameters() as $parameter => $rule) {
Expand Down

0 comments on commit eb22bf4

Please sign in to comment.