From eb22bf438213e9c9c904c8076f469f3f6c6bd001 Mon Sep 17 00:00:00 2001 From: Fernando Piovezan Date: Tue, 11 Jun 2024 08:31:25 -0300 Subject: [PATCH] Adjust lint --- src/LaravelRequestDocsToOpenApi.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LaravelRequestDocsToOpenApi.php b/src/LaravelRequestDocsToOpenApi.php index bd9d224..46c1675 100644 --- a/src/LaravelRequestDocsToOpenApi.php +++ b/src/LaravelRequestDocsToOpenApi.php @@ -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) {