@@ -42,12 +42,12 @@ discard block |
||
| 42 | 42 | private function getFilename(string $folder, string $file):string |
| 43 | 43 | { |
| 44 | 44 | |
| 45 | - $fileUrl = $folder . $file; |
|
| 45 | + $fileUrl = $folder.$file; |
|
| 46 | 46 | $filePath = $_SERVER['DOCUMENT_ROOT']."/public/".$fileUrl; |
| 47 | - if(file_exists($filePath) !== 1) |
|
| 47 | + if (file_exists($filePath) !== 1) |
|
| 48 | 48 | { |
| 49 | 49 | $fileNum = 0; |
| 50 | - while(file_exists($filePath)) |
|
| 50 | + while (file_exists($filePath)) |
|
| 51 | 51 | { |
| 52 | 52 | $fileUrl = $folder.$fileNum."_".$file; |
| 53 | 53 | $filePath = $_SERVER['DOCUMENT_ROOT']."/public/".$fileUrl; |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | |
| 76 | 76 | // Respond to the successful upload with JSON. |
| 77 | 77 | echo json_encode(array('location' => $filetowrite)); |
| 78 | - } else { |
|
| 78 | + }else { |
|
| 79 | 79 | // Notify editor that the upload failed |
| 80 | 80 | echo json_encode(array('error' => 'Upload failed')); |
| 81 | 81 | } |
@@ -109,7 +109,7 @@ discard block |
||
| 109 | 109 | |
| 110 | 110 | // Respond to the successful upload with JSON. |
| 111 | 111 | echo json_encode(array('location' => $filetowrite)); |
| 112 | - } else { |
|
| 112 | + }else { |
|
| 113 | 113 | // Notify editor that the upload failed |
| 114 | 114 | header("HTTP/1.1 500 Server Error"); |
| 115 | 115 | } |