minor reformat

This commit is contained in:
Ivan Fedorov 2021-03-24 23:28:24 +03:00 committed by Ivan Fedorov
parent a3c58156ae
commit 6106d2ed25
1 changed files with 4 additions and 4 deletions

View File

@ -34,8 +34,8 @@ namespace {
/**
* Zstandard compression.
*
* @param string $data The string to compress.
* @param int $level The level of compression (1-22). (Defaults to 3, 0 for no compression).
* @param string $data The string to compress.
* @param int $level The level of compression (1-22). (Defaults to 3, 0 for no compression).
* A value smaller than 0 means a faster compression level. (Zstandard library 1.3.4 or later)
*
* @return string|false Returns the compressed data or FALSE if an error occurred.
@ -120,8 +120,8 @@ namespace Zstd {
/**
* Zstandard compression.
*
* @param string $data The string to compress.
* @param int $level The level of compression (1-22). (Defaults to 3, 0 for no compression).
* @param string $data The string to compress.
* @param int $level The level of compression (1-22). (Defaults to 3, 0 for no compression).
* A value smaller than 0 means a faster compression level. (Zstandard library 1.3.4 or later)
*
* @return string|false Returns the compressed data or FALSE if an error occurred.