File tree 2 files changed +4
-7
lines changed
2 files changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,4 @@ parameters:
6
6
paths :
7
7
- src
8
8
9
- # The level 9 is the highest level
10
- level : 5
11
-
12
- checkMissingIterableValueType : false
9
+ level : max
Original file line number Diff line number Diff line change @@ -49,16 +49,16 @@ protected function shouldCompressResponse($response): bool
49
49
&& ! $ response instanceof StreamedResponse
50
50
&& ! $ response ->headers ->has ('Content-Encoding ' )
51
51
&& config ('response-compression.enable ' , true )
52
- && strlen ($ response ->getContent ()) >= config ('response-compression.threshold ' , 10000 );
52
+ && strlen ($ response ->getContent () ?: '' ) >= config ('response-compression.threshold ' , 10000 );
53
53
}
54
54
55
55
/**
56
56
* Determine which algorithm should be used to compress the response.
57
57
*
58
58
* @param \Illuminate\Http\Request $request
59
- * @return array< string> |null
59
+ * @return array{0: string, 1: callable-string} |null
60
60
*/
61
- protected function shouldCompressUsing ($ request )
61
+ protected function shouldCompressUsing ($ request ): ? array
62
62
{
63
63
$ requestEncodings = $ request ->getEncodings ();
64
64
You can’t perform that action at this time.
0 commit comments