Skip to content

Commit

Permalink
php7 stric issue fixing
Browse files Browse the repository at this point in the history
php7 stric issue fixing
  • Loading branch information
vrkansagara committed Mar 1, 2022
1 parent 0a0a4f2 commit baac692
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Middleware/AfterMiddleware.php
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,9 @@ public function handle($request, Closure $next)

ini_set(
'zlib.output_compression',
4096
'4096'
); // Some browser cant get content type.
ini_set('zlib.output_compression_level', -1); // Let server decide.
ini_set('zlib.output_compression_level', '-1'); // Let server decide.

return $response;
}
Expand Down

0 comments on commit baac692

Please sign in to comment.