Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Mar 27, 2023
1 parent 2ef59d6 commit 5d23515
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/Http/Controllers/SwaggerAssetController.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public function index(Request $request)
$fileSystem->get($path),
200,
[
'Content-Type' => (pathinfo($asset))['extension'] == 'css'
'Content-Type' => pathinfo($asset)['extension'] == 'css'
? 'text/css'
: 'application/javascript',
]
Expand Down
1 change: 1 addition & 0 deletions tests/ConfigFactoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ public function itThrowsExceptionIfDocumentationConfigNotFound(): void

/**
* @test
*
* @dataProvider configDataProvider
*
* @param array $data
Expand Down
1 change: 1 addition & 0 deletions tests/ConsoleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ class ConsoleTest extends TestCase
{
/**
* @test
*
* @dataProvider provideGenerateCommands
*
* @param string $artisanCommand
Expand Down
1 change: 1 addition & 0 deletions tests/SecurityDefinitionsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ public function itWillNotAddEmptySecurityItems(): void

/**
* @test
*
* @dataProvider provideConfigAndSchemes
*
* @param array $securitySchemes
Expand Down

0 comments on commit 5d23515

Please sign in to comment.