Skip to content

Commit 546d88d

Browse files
committed
chore: configs trailing comma
1 parent f748620 commit 546d88d

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

MIGRATION-GUIDES.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ As package starting to work with new Open API specification, need to regenerate
55
The base namespace of the package had also been changed, so you need to use new namespace in:
66

77
- `bootstrap\app.php` (`Http/Kernel.php` for Laravel <= 10), change namespace of
8-
`\RonasIT\Support\AutoDoc\Http\Middleware\AutoDocMiddleware::class` to
9-
`\RonasIT\AutoDoc\Http\Middleware\AutoDocMiddleware::class`;
8+
`\RonasIT\Support\AutoDoc\Http\Middleware\AutoDocMiddleware` to
9+
`\RonasIT\AutoDoc\Http\Middleware\AutoDocMiddleware`;
1010
- `tests/TestCase.php`, change namespace of `\RonasIT\Support\AutoDoc\Tests\AutoDocTestCaseTrait` to
1111
`\RonasIT\AutoDoc\Traits\AutoDocTestCaseTrait`;
1212
- `phpunit.xml`, change namespace of extension from `RonasIT\Support\AutoDoc\Tests\PhpUnitExtensions\SwaggerExtension` to

config/auto-doc.php

+8-8
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@
5151
],
5252
'license' => [
5353
'name' => '',
54-
'url' => ''
55-
]
54+
'url' => '',
55+
],
5656
],
5757

5858
/*
@@ -80,13 +80,13 @@
8080
'jwt' => [
8181
'type' => 'apiKey',
8282
'name' => 'Authorization',
83-
'in' => 'header'
83+
'in' => 'header',
8484
],
8585
'laravel' => [
8686
'type' => 'apiKey',
8787
'name' => '__ym_uid',
88-
'in' => 'cookie'
89-
]
88+
'in' => 'cookie',
89+
],
9090
],
9191

9292
'defaults' => [
@@ -99,8 +99,8 @@
9999
'code-descriptions' => [
100100
'200' => 'Operation successfully done',
101101
'204' => 'Operation successfully done',
102-
'404' => 'This entity not found'
103-
]
102+
'404' => 'This entity not found',
103+
],
104104
],
105105

106106
/*
@@ -147,7 +147,7 @@
147147
*/
148148
'disk' => env('SWAGGER_STORAGE_DRIVER_DISK', 'public'),
149149
'production_path' => 'documentation.json',
150-
]
150+
],
151151
],
152152

153153
/*

0 commit comments

Comments
 (0)