We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb2b2b3 commit c66ee61Copy full SHA for c66ee61
src/Doc.php
@@ -4,6 +4,9 @@
4
5
use Illuminate\Contracts\Support\Arrayable;
6
7
+/**
8
+ * @codeCoverageIgnore
9
+ */
10
class Doc implements Arrayable
11
{
12
/**
@@ -129,7 +132,6 @@ public function __construct(
129
132
$this->responses = [];
130
133
}
131
134
-
135
136
* @return string
137
*/
src/LaravelRequestDocsToOpenApi.php
@@ -145,6 +145,9 @@ protected function getAttributeType(string $rule): string
145
return "object";
146
147
148
+ /**
149
150
151
public function toJson(): string
152
153
return collect($this->openApi)->toJson(JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE);
0 commit comments