Skip to content

Commit

Permalink
Fix syntax problem
Browse files Browse the repository at this point in the history
  • Loading branch information
tsdicloud committed May 7, 2021
1 parent f139d2b commit 6b3f4ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/private/Files/ObjectStore/S3ObjectTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public function readObject($urn) {
* @throws \Exception when something goes wrong, message will be logged
* @since 7.0.0
*/
public function writeObject($urn, $stream, string $mimetype = null)
public function writeObject($urn, $stream, string $mimetype = null) {
$count = 0;
$countStream = CallbackWrapper::wrap($stream, function ($read) use (&$count) {
$count += $read;
Expand Down

0 comments on commit 6b3f4ff

Please sign in to comment.