fix(S3): Adjust typing for 32bit compatibility

Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
pull/44462/head
Ferdinand Thiessen 2 months ago
parent 1a55084930
commit 7880086de8
No known key found for this signature in database
GPG Key ID: 45FAE7268762B400

@ -43,11 +43,14 @@ trait S3ConfigTrait {
protected string $storageClass;
protected int $uploadPartSize;
/** @var int Part size in bytes (float is added for 32bit support) */
protected int|float $uploadPartSize;
private int $putSizeLimit;
/** @var int Limit on PUT in bytes (float is added for 32bit support) */
private int|float $putSizeLimit;
private int $copySizeLimit;
/** @var int Limit on COPY in bytes (float is added for 32bit support) */
private int|float $copySizeLimit;
private bool $useMultipartCopy = true;
}

Loading…
Cancel
Save