Skip to content

Commit

Permalink
feature/comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Raul Mauricio Uñate Castro committed Jul 8, 2024
1 parent 916c6ec commit 924007c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Illuminate/Support/Str.php
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,7 @@ public static function convertCase(string $string, int $mode = MB_CASE_FOLD, ?st
* @param string $string The string to compress.
* @param int $level Compression level (1 to 9, defaults to 5).
* @return string The compressed string.
*
* @throws \OutOfBoundsException If the compression level is out of bounds.
* @throws \RuntimeException If the compression fails.
*/
Expand All @@ -370,6 +371,7 @@ public static function compress(string $string, int $level = 5)
*
* @param string $compressedString The compressed string.
* @return string The decompressed string.
*
* @throws \RuntimeException If the decompression fails.
*/
public static function decompress(string $compressedString)
Expand Down
2 changes: 2 additions & 0 deletions src/Illuminate/Support/Stringable.php
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,7 @@ public function convertCase(int $mode = MB_CASE_FOLD, ?string $encoding = 'UTF-8
* @param string $string The string to compress.
* @param int $level Compression level (1 to 9, defaults to 5).
* @return string The compressed string.
*
* @throws \OutOfBoundsException If the compression level is out of bounds.
* @throws \RuntimeException If the compression fails.
*/
Expand All @@ -254,6 +255,7 @@ public function compress(int $level = 5)
*
* @param string $compressedString The compressed string.
* @return string The decompressed string.
*
* @throws \RuntimeException If the decompression fails.
*/
public function decompress()
Expand Down

0 comments on commit 924007c

Please sign in to comment.