1.0.3
- Enabled to construct the FileReceiver with dependency injection - the fasted way.
public function upload(FileReceiver $receiver) {
// check if the upload is success
if ($receiver->isUploaded()) {
....
}
}
- Removed the
getChunkFile
and addedgetUploadedFile
for all Save classes. Returns always the uploaded file (the uploaded chunk).