Skip to content

Commit 1d7e633

Browse files
authored
Merge pull request #42 from rhynodesigns/patch-1
Missing ';'
2 parents ca83319 + 6782df4 commit 1d7e633

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ require_once './vendor/autoload.php';
2828
$config = new \Flow\Config();
2929
$config->setTempDir('./chunks_temp_folder');
3030
$request = new \Flow\Request();
31-
$uploadFolder = './final_file_destination/' // Folder where the file will be stored
31+
$uploadFolder = './final_file_destination/'; // Folder where the file will be stored
3232
$uploadFileName = uniqid()."_".$request->getFileName(); // The name the file will have on the server
3333
$uploadPath = $uploadFolder.$uploadFileName;
3434
if (\Flow\Basic::save($uploadPath, $config, $request)) {

0 commit comments

Comments
 (0)