Skip to content

Commit

Permalink
feature/compress-style
Browse files Browse the repository at this point in the history
  • Loading branch information
Raul Mauricio Uñate Castro committed Jul 6, 2024
1 parent 266a971 commit 0d138fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Support/Stringable.php
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ public function convertCase(int $mode = MB_CASE_FOLD, ?string $encoding = 'UTF-8
*/
public function compress(int $mode = 5)
{
return new static(Str::compress($this->value, $mode));
return new static(Str::compress($this->value, $mode));
}

/**
Expand Down

0 comments on commit 0d138fe

Please sign in to comment.