laravel-plupload
laravel-plupload copied to clipboard
Problem with UploadedFile from Symfony new Http-Foundation
The construct of UploadFile do not accept the filesize anymore.
So, the method receiveChunks should instance the new UploadedFile, without passing the filesize attribute: $file = new UploadedFile($filePath, $originalName, 'blob', UPLOAD_ERR_OK, true); /sizeof => filesize : fix for php 7.2/
Hi,
Can you please add a pull request with this fix to the repo?
@m33ts4k0z Done.