Skip to content

Commit

Permalink
Code style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nmuntyanov committed Nov 9, 2023
1 parent a350cb5 commit b1e9178
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Integration/Aws/SimpleS3/src/SimpleS3Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public function copy(string $srcBucket, string $srcKey, string $destBucket, stri
$contentLength = (int) $sourceHead->getContentLength();
$options['ContentType'] = $sourceHead->getContentType();
$concurrency = (int) ($options['Concurrency'] ?? 10);
$mupThreshold = ((int)($options['mupThreshold'] ?? 2 * 1024)) * $megabyte;
$mupThreshold = ((int) ($options['mupThreshold'] ?? 2 * 1024)) * $megabyte;
unset($options['Concurrency'], $options['mupThreshold']);
/*
* The maximum number of parts is 10.000. The partSize must be a power of 2.
Expand Down

0 comments on commit b1e9178

Please sign in to comment.