@@ -30,7 +30,7 @@ public function handle(Request $request, Closure $next): mixed
30
30
$ response = $ next ($ request );
31
31
32
32
if (
33
- ! $ this ->config ->get ('static.optimizations .on_termination ' ) &&
33
+ ! $ this ->config ->get ('static.options .on_termination ' ) &&
34
34
$ this ->shouldBeStatic ($ request , $ response )
35
35
) {
36
36
$ response = $ this ->minifyResponse ($ response );
@@ -47,7 +47,7 @@ public function handle(Request $request, Closure $next): mixed
47
47
public function terminate (Request $ request , $ response ): void
48
48
{
49
49
if (
50
- $ this ->config ->get ('static.optimizations .on_termination ' ) &&
50
+ $ this ->config ->get ('static.options .on_termination ' ) &&
51
51
$ this ->shouldBeStatic ($ request , $ response )
52
52
) {
53
53
$ response = $ this ->minifyResponse ($ response );
@@ -85,7 +85,7 @@ public function joinPaths(array $paths): string
85
85
*/
86
86
public function minifyResponse ($ response )
87
87
{
88
- if (! $ this ->config ->get ('static.minify_html ' )) {
88
+ if (! $ this ->config ->get ('static.options. minify_html ' )) {
89
89
return $ response ;
90
90
}
91
91
@@ -123,8 +123,8 @@ public function createStaticFile(Request $request, $response): void
123
123
124
124
$ disk ->makeDirectory ($ path );
125
125
126
- if (! $ disk ->exists ($ this ->config ->get ('static.path ' ). '/.gitignore ' )) {
127
- $ disk ->put ($ this ->config ->get ('static.path ' ). '/.gitignore ' , '* ' . PHP_EOL . '!.gitignore ' );
126
+ if (! $ disk ->exists ($ this ->config ->get ('static.path ' ) . '/.gitignore ' )) {
127
+ $ disk ->put ($ this ->config ->get ('static.path ' ) . '/.gitignore ' , '* ' . PHP_EOL . '!.gitignore ' );
128
128
}
129
129
130
130
if ($ response ->getContent ()) {
@@ -165,7 +165,7 @@ public function basePath(Request $request): string
165
165
$ path = rtrim ($ path , '/ ' );
166
166
167
167
if ($ this ->config ->get ('static.include_domain ' )) {
168
- $ path .= '/ ' . $ this ->getDomain ($ request );
168
+ $ path .= '/ ' . $ this ->getDomain ($ request );
169
169
}
170
170
171
171
return $ path ;
@@ -198,7 +198,7 @@ protected function getFileExtension($filename, $response): ?string
198
198
return null ;
199
199
}
200
200
201
- return '. ' . $ extension ;
201
+ return '. ' . $ extension ;
202
202
}
203
203
204
204
/**
@@ -222,7 +222,7 @@ public function generateFilepath(Request $request, $response): array
222
222
$ filename .= '? ' ;
223
223
224
224
if (
225
- $ this ->config ->get ('static.include_query_string ' ) &&
225
+ $ this ->config ->get ('static.files. include_query_string ' ) &&
226
226
! blank ($ request ->server ('QUERY_STRING ' ))
227
227
) {
228
228
$ filename .= $ request ->server ('QUERY_STRING ' );
0 commit comments