1
0
Fork 0
mirror of synced 2024-06-29 19:50:26 +12:00

Fix bucket compression default

This commit is contained in:
Jake Barnby 2022-09-04 16:51:19 +12:00
parent 1896193718
commit f0c61bc4a7
No known key found for this signature in database
GPG key ID: C437A8CC85B96E9C

View file

@ -69,7 +69,7 @@ class Bucket extends Model
->addRule('compression', [
'type' => self::TYPE_STRING,
'description' => 'Compression algorithm choosen for compression. Will be one of ' . COMPRESSION_TYPE_NONE . ', [' . COMPRESSION_TYPE_GZIP . '](https://en.wikipedia.org/wiki/Gzip), or [' . COMPRESSION_TYPE_ZSTD . '](https://en.wikipedia.org/wiki/Zstd).',
'default' => [],
'default' => '',
'example' => 'gzip',
'array' => false
])