Skip to content

Commit 5d23515

Browse files
committed
Apply fixes from StyleCI
1 parent 2ef59d6 commit 5d23515

File tree

4 files changed

+4
-1
lines changed

4 files changed

+4
-1
lines changed

src/Http/Controllers/SwaggerAssetController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public function index(Request $request)
2323
$fileSystem->get($path),
2424
200,
2525
[
26-
'Content-Type' => (pathinfo($asset))['extension'] == 'css'
26+
'Content-Type' => pathinfo($asset)['extension'] == 'css'
2727
? 'text/css'
2828
: 'application/javascript',
2929
]

tests/ConfigFactoryTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ public function itThrowsExceptionIfDocumentationConfigNotFound(): void
2626

2727
/**
2828
* @test
29+
*
2930
* @dataProvider configDataProvider
3031
*
3132
* @param array $data

tests/ConsoleTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ class ConsoleTest extends TestCase
1414
{
1515
/**
1616
* @test
17+
*
1718
* @dataProvider provideGenerateCommands
1819
*
1920
* @param string $artisanCommand

tests/SecurityDefinitionsTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ public function itWillNotAddEmptySecurityItems(): void
5252

5353
/**
5454
* @test
55+
*
5556
* @dataProvider provideConfigAndSchemes
5657
*
5758
* @param array $securitySchemes

0 commit comments

Comments
 (0)