Skip to content

Commit

Permalink
static compression types
Browse files Browse the repository at this point in the history
  • Loading branch information
lohanidamodar committed Dec 31, 2023
1 parent 983e6de commit a681fb3
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/Storage/Compression/Compression.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@

abstract class Compression
{
public const ZSTD = 'zstd';
public const GZIP = 'gzip';
public const BROTLI = 'brotli';
public const LZ4 = 'lz4';
public const SNAPPY = 'snappy';
public const XZ = 'xz';

/**
* Return the name of compression algorithm.
*
Expand Down

0 comments on commit a681fb3

Please sign in to comment.