Skip to content

Commit f89cfa4

Browse files
DarkaOnLineStyleCIBot
authored andcommitted
Apply fixes from StyleCI
[ci skip] [skip ci]
1 parent 1362302 commit f89cfa4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Http/Controllers/SwaggerController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public function docs(string $file = null)
2323
$extension = 'json';
2424
$targetFile = config('l5-swagger.paths.docs_json', 'api-docs.json');
2525

26-
if (!is_null($file)) {
26+
if (! is_null($file)) {
2727
$targetFile = $file;
2828
$extension = explode('.', $file)[1];
2929
}
@@ -48,7 +48,7 @@ public function docs(string $file = null)
4848
}
4949

5050
return Response::make($content, 200, [
51-
'Content-Type' => 'application/json'
51+
'Content-Type' => 'application/json',
5252
]);
5353
}
5454

0 commit comments

Comments
 (0)