We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1a55084 + 7880086 commit 4b7b9c3Copy full SHA for 4b7b9c3
1 file changed
lib/private/Files/ObjectStore/S3ConfigTrait.php
@@ -43,11 +43,14 @@ trait S3ConfigTrait {
43
44
protected string $storageClass;
45
46
- protected int $uploadPartSize;
+ /** @var int Part size in bytes (float is added for 32bit support) */
47
+ protected int|float $uploadPartSize;
48
- private int $putSizeLimit;
49
+ /** @var int Limit on PUT in bytes (float is added for 32bit support) */
50
+ private int|float $putSizeLimit;
51
- private int $copySizeLimit;
52
+ /** @var int Limit on COPY in bytes (float is added for 32bit support) */
53
+ private int|float $copySizeLimit;
54
55
private bool $useMultipartCopy = true;
56
}
0 commit comments