@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | { |
11 | 11 | public function uploadFile($name) |
12 | 12 | { |
13 | - if (! Request::hasFile($name)) { |
|
13 | + if (!Request::hasFile($name)) { |
|
14 | 14 | return null; |
15 | 15 | } |
16 | 16 | $file = Request::file($name); |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | */ |
34 | 34 | private function validateExtension($ext) |
35 | 35 | { |
36 | - if (! FieldDetector::isUploadField($ext)) { |
|
36 | + if (!FieldDetector::isUploadField($ext)) { |
|
37 | 37 | sendAndTerminate(response()->json("The filetype is not allowed!")); |
38 | 38 | } |
39 | 39 | } |