Skip to content

Commit 08d5049

Browse files
authored
Merge pull request #15 from octoper/analysis-yrD3DG
Apply fixes from StyleCI
2 parents 2c7e7c2 + 3db954c commit 08d5049

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/TestCase.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,13 +73,13 @@ protected function defineEnvironment($app): void
7373
Route::namespace('\\Octoper\\HtmlMinify\\\Http\\Controllers')->group(function () {
7474
Route::get('/html-minify/test', function () {
7575
return response(file_get_contents(__DIR__.'/testPages/simpleMinify.html'), '200', [
76-
'Content-Type' => 'text/html'
77-
]);
76+
'Content-Type' => 'text/html',
77+
]);
7878
})->middleware(HtmlMinifyMiddleware::class);
7979

8080
Route::get('/html-minify/test/remove-comments', function () {
8181
return response(file_get_contents(__DIR__.'/testPages/removeComments.html'), '200', [
82-
'Content-Type' => 'text/html'
82+
'Content-Type' => 'text/html',
8383
]);
8484
})->middleware(HtmlMinifyMiddleware::class);
8585
});

0 commit comments

Comments
 (0)