remove explicit fclose from S3->writeStream

streams get closed automatically when dropped, and in some cases the stream seems to be already closed by the S3 library, in which case trying to close it again will raise an error

Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
Robin Appelman 2021-03-11 18:05:04 +01:00
parent 95cddb84e2
commit 3eb764e65d
No known key found for this signature in database
GPG Key ID: 42B69D8A64526EFB
1 changed files with 0 additions and 2 deletions

View File

@ -104,8 +104,6 @@ trait S3ObjectTrait {
throw $e;
}
}
fclose($countStream);
}
/**