@@ -160,7 +160,7 @@ discard block |
||
160 | 160 | $key = str_replace('-', '_', $key); |
161 | 161 | $key = strtoupper($key); |
162 | 162 | |
163 | - if (! in_array($key, ['REMOTE_ADDR', 'SERVER_PORT', 'HTTPS'])) { |
|
163 | + if (!in_array($key, ['REMOTE_ADDR', 'SERVER_PORT', 'HTTPS'])) { |
|
164 | 164 | $key = 'HTTP_' . $key; |
165 | 165 | } |
166 | 166 | |
@@ -197,7 +197,7 @@ discard block |
||
197 | 197 | return false; |
198 | 198 | } |
199 | 199 | |
200 | - if (! is_file($filePath) || ! filesize($filePath)) { |
|
200 | + if (!is_file($filePath) || !filesize($filePath)) { |
|
201 | 201 | return false; |
202 | 202 | } |
203 | 203 |