12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- declare(strict_types=1);
- namespace OC\Files\ObjectStore;
- trait S3ConfigTrait {
- protected array $params;
- protected string $bucket;
-
- protected int $concurrency;
- protected int $timeout;
- protected string $proxy;
- protected string $storageClass;
-
- protected int|float $uploadPartSize;
-
- private int|float $putSizeLimit;
-
- private int|float $copySizeLimit;
- private bool $useMultipartCopy = true;
- }
|